-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1484 lines (1351 loc) · 172 KB
/
index.html
File metadata and controls
1484 lines (1351 loc) · 172 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en-US" prefix="og: https://ogp.me/ns#">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1,user-scalable=yes">
<style id="jetpack-boost-critical-css">@media all{.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}}@media all{@charset "UTF-8";ul{box-sizing:border-box}}@media all{.wpcf7 form .wpcf7-response-output{margin:2em .5em 1em;padding:.2em 1em;border:2px solid #00a0d2}.wpcf7 form.init .wpcf7-response-output{display:none}}@media all{a,body,div,h3,h5,html,li,p,span,ul{background:0 0;border:0;margin:0;outline:0;padding:0;vertical-align:baseline}aside,header,nav,section{display:block}a img{border:none}img{height:auto;max-width:100%}.clearfix:after,.clearfix:before{content:" ";display:table}.clearfix:after{clear:both}html{overflow-y:scroll!important}body{font-family:Roboto,sans-serif;font-size:15px;font-weight:400;line-height:1.6em;color:#d8d8d8;background-color:#000;-webkit-font-smoothing:antialiased;overflow-x:hidden!important}h3{font-size:35px;line-height:1.2em;font-weight:300}h5{font-size:16px;line-height:1.438em;font-weight:400;letter-spacing:1px}h3,h5{font-family:Montserrat,sans-serif;text-transform:uppercase;color:#fff;margin:25px 0;-ms-word-wrap:break-word;word-wrap:break-word}h5 a{color:inherit;font-family:inherit;font-size:inherit;font-weight:inherit;font-style:inherit;line-height:inherit;letter-spacing:inherit;text-transform:inherit}a{color:#d8d8d8;text-decoration:none}p{margin:10px 0}ul{list-style-position:inside;margin:15px 0}.mkdf-wrapper{position:relative;left:0;z-index:1000}.mkdf-wrapper .mkdf-wrapper-inner{width:100%;overflow:hidden}.mkdf-content{position:relative;margin-top:0;background-color:#000;z-index:100}.mkdf-full-width{position:relative;z-index:100}.mkdf-content .mkdf-content-inner>.mkdf-full-width>.mkdf-full-width-inner{padding-top:122px;padding-bottom:63px}.mkdf-grid-lines-holder{position:absolute;top:0;left:0;width:100%;height:100%;z-index:0}.mkdf-grid-lines-holder.mkdf-grid{left:50%;-webkit-transform:translateX(-50%);-ms-transform:translateX(-50%);transform:translateX(-50%)}.mkdf-grid-lines-holder .mkdf-grid-line{display:block;float:left;position:relative;height:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-grid-lines-holder .mkdf-grid-line:before{content:"";position:absolute;left:0;height:100%;width:1px;background-color:rgba(105,105,105,.3);-webkit-transform-origin:bottom left;-ms-transform-origin:bottom left;transform-origin:bottom left}.mkdf-grid-lines-holder .mkdf-grid-line:last-child:after{content:"";position:absolute;right:0;height:100%;width:1px;background-color:rgba(105,105,105,.3);-webkit-transform-origin:bottom right;-ms-transform-origin:bottom right;transform-origin:bottom right}.mkdf-grid-lines-holder.mkdf-grid-columns-4 .mkdf-grid-line{width:calc(100% / 4)}.mkdf-grid{margin:0 auto;width:1100px}.mkdf-vertical-align-containers{position:relative;width:100%;height:100%;padding:0 20px;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-vertical-align-containers .mkdf-position-left{position:relative;height:100%;float:left;z-index:2}.mkdf-vertical-align-containers .mkdf-position-right{position:relative;height:100%;float:right;text-align:right;z-index:2}.mkdf-vertical-align-containers .mkdf-position-left-inner,.mkdf-vertical-align-containers .mkdf-position-right-inner{display:inline-block;vertical-align:middle}.mkdf-vertical-align-containers .mkdf-position-left:before,.mkdf-vertical-align-containers .mkdf-position-right:before{content:"";height:100%;display:inline-block;vertical-align:middle;margin-right:0}.mkdf-elementor-row-grid-section>.elementor-container{position:relative;width:1100px;margin:0 auto;z-index:20}.mkdf-content-aligment-left{text-align:left}.mkdf-grid-row{margin-left:-15px;margin-right:-15px}.mkdf-grid-row:after,.mkdf-grid-row:before{content:" ";display:table}.mkdf-grid-row:after{clear:both}.mkdf-grid-col-12{position:relative;float:left;width:100%;min-height:1px;padding-left:15px;padding-right:15px;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-grid-col-12:after,.mkdf-grid-col-12:before{content:" ";display:table}.mkdf-grid-col-12:after{clear:both}@media only screen and (max-width:1024px){.mkdf-grid-col-12{width:100%;float:none}}.mkdf-owl-slider{visibility:hidden}#mkdf-back-to-top{position:fixed;width:35px;right:25px;bottom:25px;margin:0;z-index:10000;opacity:0;visibility:hidden}#mkdf-back-to-top>span{position:relative;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;width:35px;height:35px;background-color:#212121;overflow:hidden}.mkdf-animated-layout-holder>.mkdf-lh-content{-webkit-clip-path:inset(0 100% 0 0);clip-path:inset(0 100% 0 0);-webkit-transform:translateX(40px);-ms-transform:translateX(40px);transform:translateX(40px)}.mkdf-animated-layout-holder>.mkdf-lh-content>div{opacity:0}.mkdf-animated-layout-holder>div:not(.mkdf-lh-content){-webkit-clip-path:inset(0 100% 0 0);clip-path:inset(0 100% 0 0);-webkit-transform:translateX(20px);-ms-transform:translateX(20px);transform:translateX(20px)}aside.mkdf-sidebar{position:relative;z-index:11;margin:0 0 60px}.mkdf-owl-slider{position:relative;display:none;width:100%;margin:0;z-index:1;-ms-touch-action:manipulation;touch-action:manipulation}.mkdf-page-header{position:relative;display:inline-block;width:100%;vertical-align:middle;margin:0;padding:0;z-index:110;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-page-header a img{display:block}.mkdf-page-header .mkdf-vertical-align-containers{padding:0 40px}.mkdf-page-header .mkdf-menu-area{position:relative;height:102px;background-color:#000;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-page-header .mkdf-menu-area .mkdf-logo-wrapper a{max-height:102px}.mkdf-menu-area-shadow-disable .mkdf-page-header .mkdf-menu-area{-webkit-box-shadow:none;box-shadow:none}.mkdf-menu-area-border-disable .mkdf-page-header .mkdf-menu-area{border:none}.mkdf-logo-wrapper{display:inline-block;vertical-align:middle;line-height:1}.mkdf-logo-wrapper a{position:relative;display:inline-block;vertical-align:top;max-width:100%}.mkdf-logo-wrapper a img{height:100%;width:auto}.mkdf-logo-wrapper a img.mkdf-normal-logo{opacity:1}.mkdf-logo-wrapper a img.mkdf-dark-logo{opacity:0;-webkit-transform:translateY(-100%);-ms-transform:translateY(-100%);transform:translateY(-100%)}.mkdf-logo-wrapper a img.mkdf-light-logo{opacity:0;-webkit-transform:translateY(-200%);-ms-transform:translateY(-200%);transform:translateY(-200%)}.mkdf-fullscreen-menu-opener{position:relative;display:inline-block;vertical-align:middle}.mkdf-fullscreen-menu-opener .mkdf-fullscreen-menu-opener-icon{position:relative;visibility:visible}.mkdf-fullscreen-menu-opener .mkdf-fullscreen-menu-close-icon{position:absolute;top:0;left:0;visibility:hidden}.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack{font-size:50px}.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack *{display:inline-block;line-height:inherit}.mkdf-fullscreen-menu-opener.mkdf-fullscreen-menu-opener-icon-pack :before{display:inline-block;line-height:inherit}.mkdf-fullscreen-menu-holder-outer{position:fixed;top:0;left:0;width:100%;height:100%;overflow-x:hidden!important;visibility:hidden;opacity:0;z-index:105}.mkdf-fullscreen-menu-holder{position:relative;width:100%;height:100%;background-color:#000;display:table;background-repeat:repeat;background-position:0 0}.mkdf-fullscreen-menu-holder-inner{display:table-cell;vertical-align:middle;padding:100px 0}nav.mkdf-fullscreen-menu{position:relative;top:0;margin:0 auto;text-align:left}nav.mkdf-fullscreen-menu ul{position:relative;list-style:none;padding:0;margin:0}nav.mkdf-fullscreen-menu ul li{margin:0;padding:0;text-align:center}nav.mkdf-fullscreen-menu ul li a{position:relative;display:inline-block;vertical-align:middle;margin:7px 0;font-size:15px;line-height:1.3em;color:#d8d8d8}nav.mkdf-fullscreen-menu ul li a span{position:relative;vertical-align:top;display:inline-block;overflow:hidden;-webkit-box-sizing:border-box;box-sizing:border-box}nav.mkdf-fullscreen-menu ul li a span:before{content:'|';position:absolute;top:-1px;left:-31px;width:25px;font-size:21px;color:#fff;display:block;text-align:center;font-family:Ionicons;line-height:inherit;font-weight:400;font-style:normal;text-rendering:auto;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg)}nav.mkdf-fullscreen-menu>ul{display:block}nav.mkdf-fullscreen-menu>ul>li>a{font-size:48px;margin:4px 0;text-transform:uppercase;font-family:Montserrat,sans-serif;font-weight:200}@media only screen and (max-width:680px){nav.mkdf-fullscreen-menu>ul>li>a{font-size:40px}}nav.mkdf-fullscreen-menu>ul>li>a span:before{content:''}.mkdf-fade-push-text-right .mkdf-fullscreen-menu-holder-outer{position:fixed;width:100%;height:100%;top:0;left:0;visibility:hidden;overflow:hidden!important;z-index:105;opacity:0}.mkdf-header-minimal .mkdf-page-header .mkdf-menu-area .mkdf-position-right-inner{height:auto}.mkdf-header-minimal .mkdf-page-header .mkdf-position-left:before,.mkdf-header-minimal .mkdf-page-header .mkdf-position-right:before{content:""}.mkdf-mobile-header{position:relative;display:none;z-index:110}.mkdf-mobile-header .mkdf-mobile-header-inner{position:relative;height:70px;background-color:#000;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-mobile-header .mkdf-mobile-header-inner .mkdf-mobile-header-holder{position:relative;display:inline-block;vertical-align:middle;width:100%;z-index:2;height:100%}.mkdf-mobile-header .mkdf-grid{height:100%}.mkdf-mobile-header .mkdf-vertical-align-containers{padding:0}.mkdf-mobile-header .mkdf-vertical-align-containers .mkdf-position-right{max-width:80%}.mkdf-mobile-header .mkdf-mobile-logo-wrapper a{display:block}.mkdf-mobile-header .mkdf-mobile-logo-wrapper img{display:block;height:100%;width:auto}.mkdf-btn{position:relative;display:inline-block;vertical-align:middle;width:auto;margin:0;font-family:Raleway,sans-serif;font-size:12px;line-height:2em;letter-spacing:.25em;font-weight:700;text-transform:uppercase;outline:0;-webkit-box-sizing:border-box;box-sizing:border-box;padding:15px 43px}.mkdf-btn.mkdf-btn-simple{padding:0!important;color:#fff;background-color:transparent;border:0;vertical-align:middle}.mkdf-btn.mkdf-btn-simple .mkdf-btn-text{position:relative;z-index:2;display:inline-block;vertical-align:middle}.mkdf-iwt{position:relative;display:inline-block;width:100%;vertical-align:middle}.mkdf-iwt .mkdf-iwt-icon a{position:relative;display:inline-block;vertical-align:middle;color:#fff}.mkdf-iwt .mkdf-iwt-icon .mkdf-icon-shortcode{line-height:1}.mkdf-iwt .mkdf-iwt-title{margin:0;line-height:1.2em}.mkdf-iwt .mkdf-iwt-title a{position:relative;display:inline-block;vertical-align:top}.mkdf-iwt .mkdf-iwt-title-text{display:block}.mkdf-iwt .mkdf-iwt-text{margin:15px 0 0}.mkdf-iwt.mkdf-iwt-icon-left{width:auto}.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-content,.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-icon{display:table-cell;vertical-align:top}.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-icon{position:relative;top:1px}.mkdf-iwt.mkdf-iwt-icon-left .mkdf-iwt-content{padding:2px 0 0 19px}.mkdf-icon-shortcode{position:relative;display:inline-block;vertical-align:middle;line-height:1.1em}.mkdf-icon-shortcode .mkdf-icon-element{display:block;line-height:inherit}.mkdf-icon-shortcode .mkdf-icon-element:before{display:block;line-height:inherit}.mkdf-icon-medium{font-size:3em}.mkdf-layout-holder{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-ms-flex-wrap:wrap;flex-wrap:wrap}.mkdf-layout-holder.mkdf-slider-type{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.mkdf-layout-holder.mkdf-slider-type .mkdf-lh-content{-ms-flex-item-align:center;align-self:center}.mkdf-layout-holder .mkdf-lh-content,.mkdf-layout-holder .mkdf-lh-slider-images{width:calc(50% + 10px)}.mkdf-layout-holder .mkdf-lh-slider-images img{max-width:100%}.mkdf-layout-holder .mkdf-lh-slider-images{margin:0 -10px 0 0}.mkdf-layout-holder .mkdf-lh-content{margin:30px 0 30px -10px;padding:68px 86px 77px;background-color:#1b1b1b;-webkit-box-sizing:border-box;box-sizing:border-box;z-index:1}.mkdf-section-title-holder{position:relative;display:inline-block;width:100%;vertical-align:middle;-webkit-box-sizing:border-box;box-sizing:border-box}.mkdf-section-title-holder .mkdf-st-title{margin:0}.mkdf-section-title-holder .mkdf-st-line{margin:0 auto;display:inline-block;width:50px;border-bottom:1px solid #9c9c9c;padding-top:18px}html{height:100%;overflow-x:hidden}}@media all{@font-face{font-family:ElegantIcons;font-weight:400;font-style:normal}.icon_close,.icon_menu{font-family:ElegantIcons;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased}.icon_close:before{content:"\4d"}.icon_menu:before{content:"\61"}}@media all{@font-face{font-family:Linearicons-Free;font-weight:400;font-style:normal}.lnr{font-family:Linearicons-Free;speak:none;font-style:normal;font-weight:400;font-variant:normal;text-transform:none;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.lnr-home:before{content:"\e800"}.lnr-apartment:before{content:"\e801"}.lnr-cog:before{content:"\e810"}.lnr-leaf:before{content:"\e849"}.lnr-earth:before{content:"\e853"}.lnr-history:before{content:"\e863"}}@media all{nav.mkdf-fullscreen-menu ul li a span:before{color:gold}.mkdf-mobile-header .mkdf-mobile-header-inner{height:100px}.mkdf-mobile-header .mkdf-mobile-logo-wrapper a{max-height:100px}}@media all{@media only screen and (max-width:1200px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:950px}}@media only screen and (max-width:1024px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:768px}}@media only screen and (max-width:768px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:600px}}@media only screen and (max-width:680px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:420px}}@media only screen and (max-width:480px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:300px}}@media only screen and (max-width:320px){.mkdf-elementor-row-grid-section>.elementor-container,.mkdf-grid{width:90%}}@media only screen and (max-width:1024px){.mkdf-page-header{display:none}}@media only screen and (max-width:1024px){.mkdf-mobile-header{display:block}}@media only screen and (max-width:1366px){.mkdf-layout-holder .mkdf-lh-content{padding:38px 56px 47px}}@media only screen and (max-width:1024px){.mkdf-layout-holder{display:block}.mkdf-layout-holder .mkdf-lh-content,.mkdf-layout-holder .mkdf-lh-slider-images{width:100%;margin:0!important}.mkdf-layout-holder .mkdf-lh-content{padding:40px 50px 50px}.mkdf-layout-holder.mkdf-slider-type.mkdf-pag-enabled .mkdf-lh-content{padding-top:50px}}@media only screen and (max-width:680px){.mkdf-layout-holder .mkdf-lh-content{padding:20px 30px 30px}}@media only screen and (max-width:480px){.mkdf-layout-holder.mkdf-slider-type.mkdf-pag-enabled .mkdf-lh-content{padding-top:30px}.mkdf-layout-holder .mkdf-lh-content{padding:30px 30px 40px}}@media only screen and (max-width:768px){.mkdf-section-title-holder{padding:0!important}}}@media all{:root{--joinchat-ico:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0 4.686 4.686 4.686 12.283 0 16.97a12.004 12.004 0 0 1-13.754 2.299l-5.814.735a.392.392 0 0 1-.438-.44l.748-5.788A12.002 12.002 0 0 1 3.517 3.517zm3.61 17.043.3.158a9.846 9.846 0 0 0 11.534-1.758c3.843-3.843 3.843-10.074 0-13.918-3.843-3.843-10.075-3.843-13.918 0a9.846 9.846 0 0 0-1.747 11.554l.16.303-.51 3.942a.196.196 0 0 0 .219.22l3.961-.501zm6.534-7.003-.933 1.164a9.843 9.843 0 0 1-3.497-3.495l1.166-.933a.792.792 0 0 0 .23-.94L9.561 6.96a.793.793 0 0 0-.924-.445 1291.6 1291.6 0 0 0-2.023.524.797.797 0 0 0-.588.88 11.754 11.754 0 0 0 10.005 10.005.797.797 0 0 0 .88-.587l.525-2.023a.793.793 0 0 0-.445-.923L14.6 13.327a.792.792 0 0 0-.94.23z'/%3E%3C/svg%3E");--joinchat-font:-apple-system,blinkmacsystemfont,"Segoe UI",roboto,oxygen-sans,ubuntu,cantarell,"Helvetica Neue",sans-serif}.joinchat{--bottom:20px;--sep:20px;--s:60px;display:none;position:fixed;z-index:9000;right:var(--sep);bottom:var(--bottom);font:normal normal normal 16px/1.625em var(--joinchat-font);letter-spacing:0;transform:scale3d(0,0,0);transform-origin:calc(var(--s)/-2) calc(var(--s)/-4);touch-action:manipulation;-webkit-font-smoothing:antialiased}.joinchat *,.joinchat :after,.joinchat :before{box-sizing:border-box}.joinchat__button{position:absolute;z-index:2;bottom:8px;right:8px;height:var(--s);min-width:var(--s);max-width:95vw;background:#25d366;color:inherit;border-radius:calc(var(--s)/2);box-shadow:1px 6px 24px 0 rgba(7,94,84,.24)}.joinchat__button__open{width:var(--s);height:var(--s);border-radius:50%;background:rgb(0 0 0/0) var(--joinchat-ico) 50% no-repeat;background-size:60%;overflow:hidden}@media (max-width:480px),(orientation:landscape) and (max-height:480px){.joinchat{--bottom:6px;--sep:6px}}}@media all{.elementor *,.elementor :after,.elementor :before{box-sizing:border-box}.elementor a{box-shadow:none;text-decoration:none}.elementor img{height:auto;max-width:100%;border:none;border-radius:0;box-shadow:none}.elementor-element{--flex-direction:initial;--flex-wrap:initial;--justify-content:initial;--align-items:initial;--align-content:initial;--gap:initial;--flex-basis:initial;--flex-grow:initial;--flex-shrink:initial;--order:initial;--align-self:initial;flex-basis:var(--flex-basis);flex-grow:var(--flex-grow);flex-shrink:var(--flex-shrink);order:var(--order);align-self:var(--align-self)}.elementor-element:where(.e-con-full,.elementor-widget){flex-direction:var(--flex-direction);flex-wrap:var(--flex-wrap);justify-content:var(--justify-content);align-items:var(--align-items);align-content:var(--align-content);gap:var(--gap)}.elementor-section{position:relative}.elementor-section .elementor-container{display:flex;margin-right:auto;margin-left:auto;position:relative}@media (max-width:1024px){.elementor-section .elementor-container{flex-wrap:wrap}}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-widget-wrap{position:relative;width:100%;flex-wrap:wrap;align-content:flex-start}.elementor:not(.elementor-bc-flex-widget) .elementor-widget-wrap{display:flex}.elementor-widget-wrap>.elementor-element{width:100%}.elementor-widget{position:relative}.elementor-widget:not(:last-child){margin-bottom:20px}.elementor-column{position:relative;min-height:1px;display:flex}.elementor-column-gap-default>.elementor-column>.elementor-element-populated{padding:10px}@media (min-width:768px){.elementor-column.elementor-col-33{width:33.333%}.elementor-column.elementor-col-100{width:100%}}@media (max-width:767px){.elementor-column{width:100%}}}@media all{.elementor-kit-7{--e-global-color-text:#7A7A7A;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400}.elementor-section.elementor-section-boxed>.elementor-container{max-width:1140px}.elementor-widget:not(:last-child){margin-bottom:20px}@media (max-width:1024px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:1024px}}@media (max-width:767px){.elementor-section.elementor-section-boxed>.elementor-container{max-width:767px}}}@media all{.elementor-widget-text-editor{color:var(--e-global-color-text);font-family:var(--e-global-typography-text-font-family),Sans-serif;font-weight:var(--e-global-typography-text-font-weight)}}@media all{.elementor-1373 .elementor-element.elementor-element-8c2df06{padding:135px 0 65px 0}.elementor-1373 .elementor-element.elementor-element-bf3ddcc>.elementor-element-populated{padding:0 10px 0 13px}.elementor-1373 .elementor-element.elementor-element-da25168>.elementor-element-populated{padding:0 10px 0 13px}.elementor-1373 .elementor-element.elementor-element-2333f3d>.elementor-element-populated{padding:0 10px 0 13px}.elementor-1373 .elementor-element.elementor-element-8e48742{padding:0 0 140px 0}.elementor-1373 .elementor-element.elementor-element-47c747a>.elementor-element-populated{padding:0}@media (max-width:1024px){.elementor-1373 .elementor-element.elementor-element-bf3ddcc>.elementor-element-populated{padding:0 50px 0 0}.elementor-1373 .elementor-element.elementor-element-da25168>.elementor-element-populated{padding:0 50px 0 0}.elementor-1373 .elementor-element.elementor-element-2333f3d>.elementor-element-populated{padding:0 50px 0 0}}@media (max-width:767px){.elementor-1373 .elementor-element.elementor-element-bf3ddcc>.elementor-element-populated{padding:0}.elementor-1373 .elementor-element.elementor-element-da25168>.elementor-element-populated{padding:0}.elementor-1373 .elementor-element.elementor-element-2333f3d>.elementor-element-populated{padding:0}}@media (max-width:1024px) and (min-width:768px){.elementor-1373 .elementor-element.elementor-element-bf3ddcc{width:100%}.elementor-1373 .elementor-element.elementor-element-da25168{width:100%}.elementor-1373 .elementor-element.elementor-element-2333f3d{width:100%}}}@media all{.elementor-4869 .elementor-element.elementor-element-45ec9fb9>.elementor-element-populated{padding:0}}@media all{.rs-p-wp-fix{display:none!important;margin:0!important;height:0!important}rs-module-wrap{visibility:hidden}rs-module-wrap,rs-module-wrap *{box-sizing:border-box}rs-module-wrap{position:relative;z-index:1;width:100%;display:block}rs-module{position:relative;overflow:hidden;display:block}rs-module img{max-width:none!important;margin:0;padding:0;border:none}rs-slide,rs-slide:before,rs-slides{position:absolute;text-indent:0;top:0;left:0}rs-slide,rs-slide:before{display:block;visibility:hidden}rs-module rs-layer{opacity:0;position:relative;visibility:hidden;white-space:nowrap;display:block;-webkit-font-smoothing:antialiased!important;-moz-osx-font-smoothing:grayscale;z-index:1;font-display:swap}rs-layer:not(.rs-wtbindex){outline:0!important}rs-layer img{vertical-align:top}rs-static-layers{position:absolute;z-index:101;top:0;left:0;display:block;width:100%;height:100%;overflow:hidden}.rs-stl-visible{overflow:visible!important}}</style>
<title>RS DESIGNS - Interior Design Agency</title>
<meta name="description" content="RS Designs is a premier interior design company that specializes in creating luxurious and sophisticated living spaces for modern lifestyles. From space planning to furniture selection and project management, we offer a range of services that deliver exceptional design solutions tailored to your unique needs and style. Contact us today to transform your living space into a functional and stylish oasis.">
<meta name="robots" content="follow, index, max-snippet:-1, max-video-preview:-1, max-image-preview:large">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:title" content="RS DESIGNS - Interior Design Agency">
<meta property="og:description" content="RS Designs is a premier interior design company that specializes in creating luxurious and sophisticated living spaces for modern lifestyles. From space planning to furniture selection and project management, we offer a range of services that deliver exceptional design solutions tailored to your unique needs and style. Contact us today to transform your living space into a functional and stylish oasis.">
<meta property="og:url" content="https://thersdesigns.com/">
<meta property="og:site_name" content="RS DESIGNS">
<meta property="og:updated_time" content="2023-04-08T17:12:00+00:00">
<meta property="og:image" content="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png">
<meta property="og:image:width" content="1163">
<meta property="og:image:height" content="1142">
<meta property="og:image:alt" content="RS DESIGNS">
<meta property="og:image:type" content="image/png">
<meta property="article:published_time" content="2019-03-11T11:06:10+00:00">
<meta property="article:modified_time" content="2023-04-08T17:12:00+00:00">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="RS DESIGNS - Interior Design Agency">
<meta name="twitter:description" content="RS Designs is a premier interior design company that specializes in creating luxurious and sophisticated living spaces for modern lifestyles. From space planning to furniture selection and project management, we offer a range of services that deliver exceptional design solutions tailored to your unique needs and style. Contact us today to transform your living space into a functional and stylish oasis.">
<meta name="twitter:image" content="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png">
<meta name="twitter:label1" content="Written by">
<meta name="twitter:data1" content="admin">
<meta name="twitter:label2" content="Time to read">
<meta name="twitter:data2" content="2 minutes">
<meta name="google-site-verification" content="MqNyIhxvhQ2nvp37KwqTjMASwCWgTFHFlLXwr67ph5c">
<link rel="dns-prefetch" href="//fonts.googleapis.com">
<noscript><link rel="stylesheet" id="wp-block-library-css" href="https://thersdesigns.com/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="wp-block-library-css" href="https://thersdesigns.com/wp-includes/css/dist/block-library/style.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<style id="joinchat-button-style-inline-css" type="text/css">
.wp-block-joinchat-button{border:none!important;text-align:center}.wp-block-joinchat-button figure{display:table;margin:0 auto;padding:0}.wp-block-joinchat-button figcaption{font:normal normal 400 .6em/2em var(--wp--preset--font-family--system-font,sans-serif);margin:0;padding:0}.wp-block-joinchat-button .joinchat-button__qr{background-color:#fff;border:6px solid #25d366;border-radius:30px;box-sizing:content-box;display:block;height:200px;margin:auto;overflow:hidden;padding:10px;width:200px}.wp-block-joinchat-button .joinchat-button__qr canvas,.wp-block-joinchat-button .joinchat-button__qr img{display:block;margin:auto}.wp-block-joinchat-button .joinchat-button__link{align-items:center;background-color:#25d366;border:6px solid #25d366;border-radius:30px;display:inline-flex;flex-flow:row nowrap;justify-content:center;line-height:1.25em;margin:0 auto;text-decoration:none}.wp-block-joinchat-button .joinchat-button__link:before{background:transparent var(--joinchat-ico) no-repeat center;background-size:100%;content:"";display:block;height:1.5em;margin:-.75em .75em -.75em 0;width:1.5em}.wp-block-joinchat-button figure+.joinchat-button__link{margin-top:10px}@media (orientation:landscape)and (min-height:481px),(orientation:portrait)and (min-width:481px){.wp-block-joinchat-button.joinchat-button--qr-only figure+.joinchat-button__link{display:none}}@media (max-width:480px),(orientation:landscape)and (max-height:480px){.wp-block-joinchat-button figure{display:none}}
</style>
<noscript><link rel="stylesheet" id="classic-theme-styles-css" href="https://thersdesigns.com/wp-includes/css/classic-themes.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="classic-theme-styles-css" href="https://thersdesigns.com/wp-includes/css/classic-themes.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<style id="global-styles-inline-css" type="text/css">
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');--wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');--wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');--wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');--wp--preset--duotone--midnight: url('#wp-duotone-midnight');--wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');--wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');--wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<noscript><link rel="stylesheet" id="contact-form-7-css" href="https://thersdesigns.com/wp-content/plugins/contact-form-7/includes/css/styles.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="contact-form-7-css" href="https://thersdesigns.com/wp-content/plugins/contact-form-7/includes/css/styles.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-default-style-css" href="https://thersdesigns.com/wp-content/themes/dor/style.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-default-style-css" href="https://thersdesigns.com/wp-content/themes/dor/style.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-modules-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/modules.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-modules-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/modules.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<style id="dor-mikado-modules-inline-css" type="text/css">
.page-id-1373 .mkdf-content .mkdf-content-inner > .mkdf-container > .mkdf-container-inner, .page-id-1373 .mkdf-content .mkdf-content-inner > .mkdf-full-width > .mkdf-full-width-inner { padding: 0 0;}.page-id-1373 .mkdf-content .mkdf-content-inner > .mkdf-container > .mkdf-container-inner, .page-id-1373 .mkdf-content .mkdf-content-inner > .mkdf-full-width > .mkdf-full-width-inner { padding: 0 0;}.page-id-1373 .mkdf-page-header .mkdf-menu-area { background-color: rgba(0, 0, 0, 0);}
</style>
<noscript><link rel="stylesheet" id="mkdf-dripicons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/dripicons/dripicons.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-dripicons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/dripicons/dripicons.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-font_elegant-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/elegant-icons/style.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-font_elegant-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/elegant-icons/style.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-font_awesome-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/font-awesome/css/fontawesome-all.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-font_awesome-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/font-awesome/css/fontawesome-all.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-ion_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/ion-icons/css/ionicons.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-ion_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/ion-icons/css/ionicons.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-linea_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/linea-icons/style.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-linea_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/linea-icons/style.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-linear_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/linear-icons/style.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-linear_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/linear-icons/style.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mkdf-simple_line_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/simple-line-icons/simple-line-icons.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mkdf-simple_line_icons-css" href="https://thersdesigns.com/wp-content/themes/dor/framework/lib/icons-pack/simple-line-icons/simple-line-icons.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="mediaelement-css" href="https://thersdesigns.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="mediaelement-css" href="https://thersdesigns.com/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="wp-mediaelement-css" href="https://thersdesigns.com/wp-includes/js/mediaelement/wp-mediaelement.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="wp-mediaelement-css" href="https://thersdesigns.com/wp-includes/js/mediaelement/wp-mediaelement.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-style-dynamic-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/style_dynamic.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-style-dynamic-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/style_dynamic.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-modules-responsive-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/modules-responsive.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-modules-responsive-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/modules-responsive.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-style-dynamic-responsive-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/style_dynamic_responsive.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-style-dynamic-responsive-css" href="https://thersdesigns.com/wp-content/themes/dor/assets/css/style_dynamic_responsive.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-mikado-google-fonts-css" href="http://fonts.googleapis.com/css?family=Montserrat%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CAlegreya%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CRoboto%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CRaleway%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i&subset=latin-ext&ver=1.0.0" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-mikado-google-fonts-css" href="http://fonts.googleapis.com/css?family=Montserrat%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CAlegreya%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CRoboto%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i%7CRaleway%3A200%2C200i%2C300%2C300i%2C400%2C400i%2C500%2C500i%2C600%2C600i%2C700%2C700i&subset=latin-ext&ver=1.0.0" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="dor-core-dashboard-style-css" href="https://thersdesigns.com/wp-content/plugins/dor-core/core-dashboard/assets/css/core-dashboard.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="dor-core-dashboard-style-css" href="https://thersdesigns.com/wp-content/plugins/dor-core/core-dashboard/assets/css/core-dashboard.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="joinchat-css" href="https://thersdesigns.com/wp-content/plugins/creame-whatsapp-me/public/css/joinchat-btn.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="joinchat-css" href="https://thersdesigns.com/wp-content/plugins/creame-whatsapp-me/public/css/joinchat-btn.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="elementor-icons-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="elementor-icons-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/lib/eicons/css/elementor-icons.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="elementor-frontend-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="elementor-frontend-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/css/frontend-lite.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="swiper-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="swiper-css" href="https://thersdesigns.com/wp-content/plugins/elementor/assets/lib/swiper/v8/css/swiper.min.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="elementor-post-7-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/post-7.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="elementor-post-7-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/post-7.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="elementor-global-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/global.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="elementor-global-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/global.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="elementor-post-1373-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/post-1373.css" type="text/css" media="all">
</noscript><link rel="stylesheet" id="elementor-post-1373-css" href="https://thersdesigns.com/wp-content/uploads/elementor/css/post-1373.css" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<noscript><link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.2" type="text/css" media="all">
</noscript><link rel="stylesheet" id="google-fonts-1-css" href="https://fonts.googleapis.com/css?family=Roboto%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic%7CRoboto+Slab%3A100%2C100italic%2C200%2C200italic%2C300%2C300italic%2C400%2C400italic%2C500%2C500italic%2C600%2C600italic%2C700%2C700italic%2C800%2C800italic%2C900%2C900italic&display=swap&ver=6.2" type="text/css" media="not all" data-media="all" onload="this.media=this.dataset.media; delete this.dataset.media; this.removeAttribute( 'onload' );">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<style type="text/css">
/* If html does not have either class, do not show lazy loaded images. */
html:not( .jetpack-lazy-images-js-enabled ):not( .js ) .jetpack-lazy-image {
display: none;
}
</style>
<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head>
<body class="home page-template page-template-full-width page-template-full-width-php page page-id-1373 dor-core-2.1 dor-ver-2.2.1 mkdf-smooth-scroll mkdf-smooth-page-transitions mkdf-grid-1100 mkdf-content-is-behind-header mkdf-empty-google-api mkdf-wide-dropdown-menu-content-in-grid mkdf-no-behavior mkdf-dropdown-animate-height mkdf-header-minimal mkdf-menu-area-shadow-disable mkdf-menu-area-in-grid-shadow-disable mkdf-menu-area-border-disable mkdf-menu-area-in-grid-border-disable mkdf-logo-area-border-disable mkdf-logo-area-in-grid-border-disable mkdf-header-vertical-shadow-disable mkdf-header-vertical-border-disable mkdf-default-mobile-header mkdf-sticky-up-mobile-header wpb-js-composer js-comp-ver-6.7.0 vc_responsive mkdf-fade-push-text-right elementor-default elementor-kit-7 elementor-page elementor-page-1373" itemscope itemtype="https://schema.org/WebPage">
<svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-dark-grayscale"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 0.49803921568627"></fefuncr><fefuncg type="table" tablevalues="0 0.49803921568627"></fefuncg><fefuncb type="table" tablevalues="0 0.49803921568627"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-grayscale"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 1"></fefuncr><fefuncg type="table" tablevalues="0 1"></fefuncg><fefuncb type="table" tablevalues="0 1"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-purple-yellow"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.54901960784314 0.98823529411765"></fefuncr><fefuncg type="table" tablevalues="0 1"></fefuncg><fefuncb type="table" tablevalues="0.71764705882353 0.25490196078431"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-blue-red"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 1"></fefuncr><fefuncg type="table" tablevalues="0 0.27843137254902"></fefuncg><fefuncb type="table" tablevalues="0.5921568627451 0.27843137254902"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-midnight"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0 0"></fefuncr><fefuncg type="table" tablevalues="0 0.64705882352941"></fefuncg><fefuncb type="table" tablevalues="0 1"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-magenta-yellow"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.78039215686275 1"></fefuncr><fefuncg type="table" tablevalues="0 0.94901960784314"></fefuncg><fefuncb type="table" tablevalues="0.35294117647059 0.47058823529412"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-purple-green"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.65098039215686 0.40392156862745"></fefuncr><fefuncg type="table" tablevalues="0 1"></fefuncg><fefuncb type="table" tablevalues="0.44705882352941 0.4"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg><svg xmlns="http://www.w3.org/2000/svg" viewbox="0 0 0 0" width="0" height="0" focusable="false" role="none" style="visibility: hidden; position: absolute; left: -9999px; overflow: hidden;"><defs><filter id="wp-duotone-blue-orange"><fecolormatrix color-interpolation-filters="sRGB" type="matrix" values=" .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 .299 .587 .114 0 0 "></fecolormatrix><fecomponenttransfer color-interpolation-filters="sRGB"><fefuncr type="table" tablevalues="0.098039215686275 1"></fefuncr><fefuncg type="table" tablevalues="0 0.66274509803922"></fefuncg><fefuncb type="table" tablevalues="0.84705882352941 0.41960784313725"></fefuncb><fefunca type="table" tablevalues="1 1"></fefunca></fecomponenttransfer><fecomposite in2="SourceGraphic" operator="in"></fecomposite></filter></defs></svg> <div class="mkdf-wrapper">
<div class="mkdf-wrapper-inner">
<header class="mkdf-page-header">
<div class="mkdf-menu-area">
<div class="mkdf-vertical-align-containers">
<div class="mkdf-position-left"><div class="mkdf-position-left-inner">
<div class="mkdf-logo-wrapper">
<a itemprop="url" href="https://thersdesigns.com/" style="height: 571px;">
<img itemprop="image" class="mkdf-normal-logo" src="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png" width="1163" height="1142" alt="logo">
<img itemprop="image" class="mkdf-dark-logo" src="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png" width="1163" height="1142" alt="dark logo"> <img itemprop="image" class="mkdf-light-logo" src="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png" width="1163" height="1142" alt="light logo"> </a>
</div>
</div>
</div>
<div class="mkdf-position-right"><div class="mkdf-position-right-inner">
<a href="javascript:void(0)" class="mkdf-fullscreen-menu-opener mkdf-fullscreen-menu-opener-icon-pack">
<span class="mkdf-fullscreen-menu-close-icon">
<span aria-hidden="true" class="mkdf-icon-font-elegant icon_close "></span> </span>
<span class="mkdf-fullscreen-menu-opener-icon">
<span aria-hidden="true" class="mkdf-icon-font-elegant icon_menu "></span> </span>
</a>
</div>
</div>
</div>
</div>
</header>
<header class="mkdf-mobile-header">
<div class="mkdf-mobile-header-inner">
<div class="mkdf-mobile-header-holder">
<div class="mkdf-grid">
<div class="mkdf-vertical-align-containers">
<div class="mkdf-position-left"><div class="mkdf-position-left-inner">
<div class="mkdf-mobile-logo-wrapper">
<a itemprop="url" href="https://thersdesigns.com/" style="height: 571px">
<img itemprop="image" src="https://thersdesigns.com/wp-content/uploads/2023/03/RS1GOLD.png" width="1163" height="1142" alt="Mobile Logo">
</a>
</div>
</div>
</div>
<div class="mkdf-position-right"><div class="mkdf-position-right-inner">
<a href="javascript:void(0)" class="mkdf-fullscreen-menu-opener mkdf-fullscreen-menu-opener-icon-pack">
<span class="mkdf-fullscreen-menu-close-icon">
<span aria-hidden="true" class="mkdf-icon-font-elegant icon_close "></span> </span>
<span class="mkdf-fullscreen-menu-opener-icon">
<span aria-hidden="true" class="mkdf-icon-font-elegant icon_menu "></span> </span>
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</header>
<a id="mkdf-back-to-top" href="#">
<span class="mkdf-icon-stack">
<svg xmlns="https://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" width="11px" height="18px" viewbox="0 0 11 18" enable-background="new 0 0 11 18" xml:space="preserve">
<line fill="#FFFFFF" stroke="#FFFFFF" stroke-miterlimit="10" x1="5.515" y1="1.379" x2="5.515" y2="17.155"></line>
<line fill="#FFFFFF" stroke="#FFFFFF" stroke-miterlimit="10" x1="5.285" y1="0.844" x2="9.764" y2="5.324"></line>
<line fill="#FFFFFF" stroke="#FFFFFF" stroke-miterlimit="10" x1="5.715" y1="0.854" x2="1.236" y2="5.333"></line>
</svg> </span>
</a>
<div class="mkdf-fullscreen-menu-holder-outer">
<div class="mkdf-fullscreen-menu-holder">
<div class="mkdf-fullscreen-menu-holder-inner">
<nav class="mkdf-fullscreen-menu">
<ul id="menu-full-sc-menu" class=""><li id="popup-menu-item-5662" class="menu-item menu-item-type-custom menu-item-object-custom "><a href="#" class=""><span>Home</span></a></li>
<li id="popup-menu-item-5790" class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://thersdesigns.com/about-us/" class=""><span>About Us</span></a></li>
<li id="popup-menu-item-5791" class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://thersdesigns.com/contact-us/" class=""><span>Contact Us</span></a></li>
<li id="popup-menu-item-5792" class="menu-item menu-item-type-post_type menu-item-object-page "><a href="https://thersdesigns.com/our-team/" class=""><span>Our Team</span></a></li>
</ul></nav> </div>
</div>
</div>
<div class="mkdf-content" style="margin-top: -102px">
<div class="mkdf-content-inner"> <div class="mkdf-slider">
<div class="mkdf-slider-inner">
<p class="rs-p-wp-fix"></p>
<rs-module-wrap id="rev_slider_1_1_wrapper" data-source="gallery" style="visibility:hidden;background:transparent;padding:0;">
<rs-module id="rev_slider_1_1" style="" data-version="6.5.11">
<rs-slides>
<rs-slide style="position: absolute;" data-key="rs-1" data-title="Slide" data-thumb="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-4.jpg" data-in="o:0;" data-out="a:false;">
<img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" title="home-3-rev-4.jpg" width="1920" height="1094" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-4.jpg" data-parallax="off" data-no-retina>
<rs-layer id="slider-1-slide-1-layer-10" data-type="image" data-xy="x:c,l,l,l;xo:-414px,222px,172px,68px;y:m;yo:220px,161px,159px,153px;" data-text="l:22;a:inherit;" data-dim="w:410px,313px,313px,230px;h:223px,170px,170px,125;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:450;sp:900;sR:450;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;st:w;sp:1000;sR:3150;" data-frame_999_mask="u:t;" style="z-index:6;"><img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" class="tp-rs-img rs-lazyload" width="410" height="223" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-2.png" data-no-retina>
</rs-layer><rs-layer id="slider-1-slide-1-layer-11" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-415px,193px,141px,41px;y:m;yo:0,4px,14px,30px;" data-text="a:inherit;" data-dim="w:470px,373px,373px,290px;h:725px,540px,540px,430px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:100;sp:600;sR:100;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;e:Quad.easeInOut;st:w;sp:2500;sR:3800;" data-frame_999_mask="u:t;" style="z-index:5;background-color:#1c1c1c;">
</rs-layer><rs-layer id="slider-1-slide-1-layer-12" data-type="text" data-xy="x:c,l,l,l;xo:-451px,218px,169px,68px;y:m;yo:-183px,-151px,-139px,-93px;" data-text="w:normal;s:80,60,50,40;l:88,65,60,45;fw:300;a:inherit;" data-dim="w:345px,307px,278px,202px;h:265px,auto,auto,auto;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:250;sp:900;sR:250;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1500;sR:3350;" style="z-index:7;font-family:'Montserrat';text-transform:uppercase;">Modern Homes for All
</rs-layer><rs-layer id="slider-1-slide-1-layer-13" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-594px,223px,173px,734px;y:m;yo:-26px,-26px,-26px,-113px;" data-text="w:normal;a:inherit;" data-dim="w:50px;h:1px;" data-vbility="t,t,t,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:300;sp:900;sR:300;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3300;" style="z-index:8;background-color:#727272;">
</rs-layer><rs-layer id="slider-1-slide-1-layer-14" data-type="text" data-color="#c3c3c3" data-xy="x:c,l,l,l;xo:-446px,217px,168px,66px;y:m;yo:39px,18px,14px,39px;" data-text="w:normal;s:19,19,19,14;l:24,24,24,18;a:inherit;" data-dim="w:344px,344px,344px,261px;h:67px,67px,67px,108px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px,50px,50px,37px;" data-frame_1="x:0,0,0,0px;y:0,0,0,0px;e:Quad.easeInOut;st:360;sp:900;sR:360;" data-frame_999="x:-50px,-50px,-50px,-37px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3240;" style="z-index:9;font-family:'Alegreya';font-style:italic;">Our modern homes are designed to accommodate all lifestyles, featuring open floor plans, natural lighting, and sleek finishes that create a functional and welcoming living space.
</rs-layer> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-2" data-title="Slide" data-thumb="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-6.jpg" data-in="o:0;" data-out="a:false;">
<img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" title="home-3-rev-6.jpg" width="1920" height="1094" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-6.jpg" data-parallax="off" data-no-retina>
<rs-layer id="slider-1-slide-2-layer-10" data-type="image" data-xy="x:c,l,l,l;xo:-458px,189px,154px,41px;y:m;yo:219px,161px,165px,159px;" data-text="l:22;a:inherit;" data-dim="w:423,313px,322,239;h:230px,170px,175px,130px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:450;sp:900;sR:450;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;st:w;sp:1000;sR:3150;" data-frame_999_mask="u:t;" style="z-index:6;"><img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" class="tp-rs-img rs-lazyload" width="410" height="223" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-3.png" data-no-retina>
</rs-layer><rs-layer id="slider-1-slide-2-layer-11" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-415px,193px,141px,41px;y:m;yo:0,4px,14px,30px;" data-text="a:inherit;" data-dim="w:470px,373px,373px,290px;h:725px,540px,540px,430px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:100;sp:600;sR:100;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;e:Quad.easeInOut;st:w;sp:2500;sR:3800;" data-frame_999_mask="u:t;" style="z-index:5;background-color:#1c1c1c;">
</rs-layer><rs-layer id="slider-1-slide-2-layer-12" data-type="text" data-xy="x:c,l,l,l;xo:-451px,218px,169px,68px;y:m;yo:-183px,-151px,-139px,-93px;" data-text="w:normal;s:80,60,50,40;l:88,65,60,45;fw:300;a:inherit;" data-dim="w:345px,307px,278px,202px;h:265px,auto,auto,auto;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:250;sp:900;sR:250;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1500;sR:3350;" style="z-index:7;font-family:'Montserrat';text-transform:uppercase;">Houses
of the
Future
</rs-layer><rs-layer id="slider-1-slide-2-layer-13" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-594px,223px,173px,734px;y:m;yo:-26px,-26px,-26px,-113px;" data-text="w:normal;a:inherit;" data-dim="w:50px;h:1px;" data-vbility="t,t,t,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:300;sp:900;sR:300;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3300;" style="z-index:8;background-color:#727272;">
</rs-layer><rs-layer id="slider-1-slide-2-layer-14" data-type="text" data-color="#c3c3c3" data-xy="x:c,l,l,l;xo:-446px,219px,169px,68px;y:m;yo:23px,18px,15px,37px;" data-text="w:normal;s:19,19,19,14;l:24,24,24,18;a:inherit;" data-dim="w:344px,344px,344px,255px;h:67px,67px,67px,108px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px,50px,50px,38px;" data-frame_1="x:0,0,0,0px;y:0,0,0,0px;e:Quad.easeInOut;st:360;sp:900;sR:360;" data-frame_999="x:-50px,-50px,-50px,-38px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3240;" style="z-index:9;font-family:'Alegreya';font-style:italic;">Our houses of the future feature cutting-edge technologies, sustainable materials, and innovative design concepts that redefine the way we live, work, and interact with our environment.
</rs-layer> </rs-slide>
<rs-slide style="position: absolute;" data-key="rs-3" data-title="Slide" data-thumb="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-3.jpg" data-in="o:0;" data-out="a:false;">
<img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" title="home-3-rev-3.jpg" width="1920" height="1094" class="rev-slidebg tp-rs-img rs-lazyload" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-3.jpg" data-parallax="off" data-no-retina>
<rs-layer id="slider-1-slide-3-layer-10" data-type="image" data-xy="x:c,l,l,l;xo:-414px,222px,172px,68px;y:m;yo:220px,161px,159px,153px;" data-text="l:22;a:inherit;" data-dim="w:410px,313px,313px,230px;h:223px,170,170px,125;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:450;sp:900;sR:450;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;st:w;sp:1000;sR:3150;" data-frame_999_mask="u:t;" style="z-index:6;"><img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" class="tp-rs-img rs-lazyload" width="410" height="223" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-5.png" data-no-retina>
</rs-layer><rs-layer id="slider-1-slide-3-layer-11" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-415px,193px,141px,41px;y:m;yo:0,4px,14px,30px;" data-text="a:inherit;" data-dim="w:470px,373px,373px,290px;h:725px,540px,540px,430px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:100%;o:1;" data-frame_0_mask="u:t;" data-frame_1="e:Quad.easeInOut;st:100;sp:600;sR:100;" data-frame_1_mask="u:t;" data-frame_999="x:-100%;e:Quad.easeInOut;st:w;sp:2500;sR:3800;" data-frame_999_mask="u:t;" style="z-index:5;background-color:#1c1c1c;">
</rs-layer><rs-layer id="slider-1-slide-3-layer-12" data-type="text" data-xy="x:c,l,l,l;xo:-451px,218px,169px,68px;y:m;yo:-183px,-151px,-139px,-93px;" data-text="w:normal;s:80,60,50,40;l:88,65,60,45;fw:300;a:inherit;" data-dim="w:345px,307px,278px,202px;h:265px,auto,auto,auto;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:250;sp:900;sR:250;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1500;sR:3350;" style="z-index:7;font-family:'Montserrat';text-transform:uppercase;">Building
Further
Ahead
</rs-layer><rs-layer id="slider-1-slide-3-layer-13" class="tp-shape tp-shapewrapper" data-type="shape" data-xy="x:c,l,l,l;xo:-594px,223px,173px,734px;y:m;yo:-26px,-26px,-26px,-113px;" data-text="w:normal;a:inherit;" data-dim="w:50px;h:1px;" data-vbility="t,t,t,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px;" data-frame_1="e:Quad.easeInOut;st:300;sp:900;sR:300;" data-frame_999="x:-50px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3300;" style="z-index:8;background-color:#727272;">
</rs-layer><rs-layer id="slider-1-slide-3-layer-14" data-type="text" data-color="#c3c3c3" data-xy="x:c,l,l,l;xo:-448px,221px,171px,67px;y:m;yo:20px,35px,34px,44px;" data-text="w:normal;s:19,15,15,15;l:24,19,19,19;a:inherit;" data-dim="w:344px,326px,335px,254px;h:67px,95px,95px,114px;" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-frame_0="x:50px,41px,32px,26px;" data-frame_1="x:0,0px,0px,0px;y:0,0px,0px,0px;e:Quad.easeInOut;st:360;sp:900;sR:360;" data-frame_999="x:-50px,-40px,-32px,-26px;o:0;e:Quad.easeInOut;st:w;sp:1000;sR:3240;" style="z-index:9;font-family:'Alegreya';font-style:italic;">We are committed to building further ahead, incorporating the latest trends and technologies in our designs to create spaces that are not only beautiful but also functional, sustainable, and future-proof.
</rs-layer> </rs-slide>
</rs-slides>
<rs-static-layers class="rs-stl-visible"><rs-layer id="slider-1-slide-1-layer-10" class="tp-shape tp-shapewrapper rs-layer-static" data-type="shape" data-xy="x:c,l,l,l;xo:-415px,193px,141px,41px;y:m;yo:0,4px,14px,30px;" data-text="fw:300;a:inherit;" data-dim="w:470px,373px,373px,290px;h:725px,540px,520px,430px;" data-vbility="f,f,f,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-onslides="s:1;" data-frame_0="tp:600;" data-frame_1="tp:600;st:0;" data-frame_999="o:0;tp:600;st:w;sR:4200;" style="z-index:16;background-color:#1c1c1c;">
</rs-layer><rs-layer id="slider-1-slide-1-layer-11" class="rs-layer-static" data-type="text" data-xy="x:c,l,l,l;xo:-450px,218px,169px,68px;y:m;yo:-184px,-151px,-139px,-93px;" data-text="w:normal;s:80,60,50,40;l:88,65,60,45;fw:100;a:inherit;" data-dim="w:345px,307px,278px,202px;h:265px,auto,auto,auto;" data-vbility="f,f,f,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-onslides="s:1;" data-frame_0="tp:600;" data-frame_1="tp:600;st:0;" data-frame_999="o:0;tp:600;st:w;sR:4200;" style="z-index:17;font-family:'Montserrat';text-transform:uppercase;">Sed ut
pespia
tis une
</rs-layer><rs-layer id="slider-1-slide-1-layer-12" class="tp-shape tp-shapewrapper rs-layer-static" data-type="shape" data-xy="x:c,l,l,l;xo:-594px,223px,173px,647px;y:m;yo:-26px,-26px,-26px,-33px;" data-text="w:normal;a:inherit;" data-dim="w:50px;h:1px;" data-vbility="f,f,f,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-onslides="s:1;" data-frame_0="tp:600;" data-frame_1="tp:600;st:0;" data-frame_999="o:0;tp:600;st:w;sR:4200;" style="z-index:18;background-color:#727272;">
</rs-layer><rs-layer id="slider-1-slide-1-layer-13" class="rs-layer-static" data-type="text" data-color="#a7a7a7||#8c8b8a||#8c8b8a||#8c8b8a" data-xy="x:c,l,l,l;xo:-446px,221px,171px,68px;y:m;yo:39px,35px,34px,26px;" data-text="w:normal;l:28;fw:500;a:inherit;" data-dim="w:344px,344px,344px,240px;h:67px,67px,67px,68px;" data-vbility="f,f,f,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-onslides="s:1;" data-frame_0="tp:600;" data-frame_1="tp:600;st:0;" data-frame_999="o:0;tp:600;st:w;sR:4200;" style="z-index:19;font-family:'Cormorant';font-style:italic;">Sed ut perspiciatis unde omnis is natus error
accusantium doemque lauium, tom aperiam.
</rs-layer><rs-layer id="slider-1-slide-1-layer-14" class="rs-layer-static" data-type="image" data-xy="x:c,l,l,l;xo:-414px,222px,172px,68px;y:m;yo:220px,161px,159px,153px;" data-text="w:normal;l:22;a:inherit;" data-dim="w:410px,313px,313px,230px;h:223px,170px,170px,125px;" data-vbility="f,f,f,f" data-basealign="slide" data-rsp_o="off" data-rsp_bd="off" data-onslides="s:1;" data-frame_0="tp:600;" data-frame_1="tp:600;st:0;" data-frame_999="o:0;tp:600;st:w;sR:4200;" style="z-index:20;"><img src="https://thersdesigns.com/wp-content/plugins/revslider/public/assets/assets/dummy.png" class="tp-rs-img rs-lazyload" width="410" height="223" data-lazyload="https://thersdesigns.com/wp-content/uploads/revslider/interior-design-agency/home-3-rev-2.png" data-no-retina>
</rs-layer></rs-static-layers>
</rs-module>
</rs-module-wrap>
</div>
</div>
<div class="mkdf-full-width">
<div class="mkdf-grid-lines-holder mkdf-grid-columns-4 mkdf-grid"><div class="mkdf-grid-line mkdf-grid-column-4"></div><div class="mkdf-grid-line mkdf-grid-column-4"></div><div class="mkdf-grid-line mkdf-grid-column-4"></div><div class="mkdf-grid-line mkdf-grid-column-4"></div></div> <div class="mkdf-full-width-inner">
<div class="mkdf-grid-row">
<div class="mkdf-page-content-holder mkdf-grid-col-12">
<div data-elementor-type="wp-page" data-elementor-id="1373" class="elementor elementor-1373">
<section class="elementor-section elementor-top-section elementor-element elementor-element-8c2df06 elementor-section-full_width mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-id="8c2df06" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-bf3ddcc" data-id="bf3ddcc" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7fc7560 elementor-widget elementor-widget-mkdf_icon_with_text" data-id="7fc7560" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-home mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Space Planning</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Space Planning service involves designing the layout and flow of your living or work spaces, optimizing the use of available space, and creating functional zones to suit your needs.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-5c4206a elementor-widget elementor-widget-spacer" data-id="5c4206a" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.0 - 29-03-2023 */
.elementor-column .elementor-spacer-inner{height:var(--spacer-size)}.e-con{--container-widget-width:100%}.e-con-inner>.elementor-widget-spacer,.e-con>.elementor-widget-spacer{width:var(--container-widget-width,var(--spacer-size));--align-self:var(--container-widget-align-self,initial);--flex-shrink:0}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container,.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer,.e-con>.elementor-widget-spacer>.elementor-widget-container,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer{height:100%}.e-con-inner>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner,.e-con>.elementor-widget-spacer>.elementor-widget-container>.elementor-spacer>.elementor-spacer-inner{height:var(--container-widget-height,var(--spacer-size))}</style> <div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-e16f776 elementor-widget elementor-widget-mkdf_icon_with_text" data-id="e16f776" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-cog mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Lighting Design</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Lighting Design service involves creating a lighting plan that enhances the ambiance and functionality of your space, while highlighting its key features and creating a comfortable and inviting atmosphere.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-ecf5f05 elementor-widget elementor-widget-spacer" data-id="ecf5f05" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-da25168" data-id="da25168" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-55c07b7 elementor-widget elementor-widget-mkdf_icon_with_text" data-id="55c07b7" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-apartment mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Color Consultation</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Color Consultation service involves selecting a color palette that reflects your personal style and complements your furnishings and decor, while creating a cohesive and harmonious look and feel.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-c414750 elementor-widget elementor-widget-spacer" data-id="c414750" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-47a2fb3 elementor-widget elementor-widget-mkdf_icon_with_text" data-id="47a2fb3" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-leaf mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Custom Millwork</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Custom Millwork service involves designing and building custom-made cabinetry, shelves, and other storage solutions that maximize your space and fit your unique needs and style.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-0a825d1 elementor-widget elementor-widget-spacer" data-id="0a825d1" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-top-column elementor-element elementor-element-2333f3d" data-id="2333f3d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-ce6bd4e elementor-widget elementor-widget-mkdf_icon_with_text" data-id="ce6bd4e" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-earth mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Furniture Selection</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Furniture Selection service involves selecting and sourcing furniture pieces that are not only aesthetically pleasing but also functional, comfortable, and durable, while keeping your budget in mind.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-9e397f6 elementor-widget elementor-widget-spacer" data-id="9e397f6" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-5b5e31d elementor-widget elementor-widget-mkdf_icon_with_text" data-id="5b5e31d" data-element_type="widget" data-widget_type="mkdf_icon_with_text.default">
<div class="elementor-widget-container">
<div class="mkdf-iwt clearfix mkdf-iwt-icon-left mkdf-iwt-icon-medium">
<div class="mkdf-iwt-icon">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-icon-shortcode mkdf-normal mkdf-icon-medium" data-color="#FFFFFF">
<span aria-hidden="true" class="mkdf-icon-linear-icons lnr lnr-history mkdf-icon-element" style="color: #FFFFFF;font-size:30px"></span> </span>
</a>
</div>
<div class="mkdf-iwt-content" style="padding-left: 21px">
<h5 class="mkdf-iwt-title" style="margin-top: 5px">
<a itemprop="url" href="#" target="_self">
<span class="mkdf-iwt-title-text">Project Management</span>
</a>
</h5>
<p class="mkdf-iwt-text" style="margin-top: 17px">Our Project Management service involves overseeing every aspect of your interior design project, from the initial consultation to the final installation, ensuring that it is executed efficiently,.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-910bed6 elementor-widget elementor-widget-spacer" data-id="910bed6" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-8e48742 elementor-section-full_width mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-id="8e48742" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-47c747a" data-id="47c747a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-47141d0 elementor-widget elementor-widget-mkdf_layout_holder" data-id="47141d0" data-element_type="widget" data-widget_type="mkdf_layout_holder.default">
<div class="elementor-widget-container">
<div class="mkdf-layout-holder mkdf-animated-layout-holder mkdf-left-layout mkdf-slider-type mkdf-pag-enabled mkdf-lh-custom-1601" data-item-class="mkdf-lh-custom-1601">
<div class="mkdf-lh-slider-images mkdf-owl-slider" data-number-of-items="1" data-enable-loop="yes" data-enable-autoplay="yes" data-slider-speed="5000" data-slider-speed-animation="600" data-enable-navigation="no" data-enable-pagination="yes">
<img width="800" height="500" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-img-1.jpg" class="attachment-full size-full jetpack-lazy-image" alt="f" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-img-1.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "><img width="800" height="500" src="https://thersdesigns.com/wp-content/uploads/2019/03/hom-3-test.jpg" class="attachment-full size-full jetpack-lazy-image" alt="c" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/hom-3-test.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </div>
<div class="mkdf-lh-content" style="background-color: #1B1B1B">
<div data-elementor-type="section" data-elementor-id="4869" class="elementor elementor-4869">
<section class="elementor-section elementor-top-section elementor-element elementor-element-4dcc213f elementor-section-boxed elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-elementor-row-grid-no mkdf-disabled-bg-image-bellow-no" data-id="4dcc213f" data-element_type="section">
<div class="elementor-container elementor-column-gap-default">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-45ec9fb9" data-id="45ec9fb9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1c5f64d0 elementor-widget elementor-widget-mkdf_section_title" data-id="1c5f64d0" data-element_type="widget" data-widget_type="mkdf_section_title.default">
<div class="elementor-widget-container">
<div class="mkdf-section-title-holder ">
<div class="mkdf-st-inner">
<h3 class="mkdf-st-title">
about RS designs </h3>
<div class="mkdf-st-line"></div>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-cb28cc7 elementor-widget elementor-widget-text-editor" data-id="cb28cc7" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.0 - 29-03-2023 */
.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:#69727d;color:#fff}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap{color:#69727d;border:3px solid;background-color:transparent}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap{margin-top:8px}.elementor-widget-text-editor:not(.elementor-drop-cap-view-default) .elementor-drop-cap-letter{width:1em;height:1em}.elementor-widget-text-editor .elementor-drop-cap{float:left;text-align:center;line-height:1;font-size:50px}.elementor-widget-text-editor .elementor-drop-cap-letter{display:inline-block}</style> <p>RS Designs is a premier interior design company founded by Sonali Yadav in 2023. With a focus on modern and luxurious styles, we strive to create unique and personalized living spaces that exceed our clients’ expectations.</p> </div>
</div>
<div class="elementor-element elementor-element-1cd8bbf4 elementor-widget elementor-widget-spacer" data-id="1cd8bbf4" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-3ce86e09 elementor-widget elementor-widget-mkdf_button" data-id="3ce86e09" data-element_type="widget" data-widget_type="mkdf_button.default">
<div class="elementor-widget-container">
<a itemprop="url" href="https://dor.qodeinteractive.com/about-us/" target="_self" style="padding: " class="mkdf-btn mkdf-btn-medium mkdf-btn-simple" rel="nofollow noopener">
<span class="mkdf-btn-repeating-linear"></span>
<span class="mkdf-btn-text">Read More</span>
</a> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</section>
<section class="mkdf-parallax-row-holder elementor-section elementor-top-section elementor-element elementor-element-c13b268 elementor-section-full_width mkdf-parallax-row-holder mkdf-content-aligment-center mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-disabled-bg-image-bellow-no" data-parallax-bg-speed="1" data-parallax-bg-image="https://dor.qodeinteractive.com/elementor/wp-content/uploads/2019/03/home-3-parallax-1.jpg" data-parallax-bg-height="0" data-id="c13b268" data-element_type="section" data-settings='{"mikado_parallax_image":{"url":"https:\/\/dor.qodeinteractive.com\/elementor\/wp-content\/uploads\/2019\/03\/home-3-parallax-1.jpg","id":1386,"size":""}}'>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-e8df9c3" data-id="e8df9c3" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-ae84a69 elementor-widget elementor-widget-mkdf_counter" data-id="ae84a69" data-element_type="widget" data-widget_type="mkdf_counter.default">
<div class="elementor-widget-container">
<div class="mkdf-counter-holder mkdf-predefined-layout">
<div class="mkdf-counter-inner">
<span class="mkdf-counter mkdf-zero-counter">50+</span>
<h6 class="mkdf-counter-title" style="color: #FFFFFF">
Completed Projects </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-2013123 elementor-widget elementor-widget-spacer" data-id="2013123" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-64bf29c" data-id="64bf29c" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-1952e34 elementor-widget elementor-widget-mkdf_counter" data-id="1952e34" data-element_type="widget" data-widget_type="mkdf_counter.default">
<div class="elementor-widget-container">
<div class="mkdf-counter-holder mkdf-predefined-layout">
<div class="mkdf-counter-inner">
<span class="mkdf-counter mkdf-zero-counter">95%</span>
<h6 class="mkdf-counter-title" style="color: #FFFFFF">
Client Satisfaction </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-22cbabf elementor-widget elementor-widget-spacer" data-id="22cbabf" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-9a76ae9" data-id="9a76ae9" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0def4e6 elementor-widget elementor-widget-mkdf_counter" data-id="0def4e6" data-element_type="widget" data-widget_type="mkdf_counter.default">
<div class="elementor-widget-container">
<div class="mkdf-counter-holder mkdf-predefined-layout">
<div class="mkdf-counter-inner">
<span class="mkdf-counter mkdf-zero-counter">5</span>
<h6 class="mkdf-counter-title" style="color: #FFFFFF">
Industry Recognition </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-2467f00 elementor-widget elementor-widget-spacer" data-id="2467f00" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-9253c99" data-id="9253c99" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-daa0145 elementor-widget elementor-widget-mkdf_counter" data-id="daa0145" data-element_type="widget" data-widget_type="mkdf_counter.default">
<div class="elementor-widget-container">
<div class="mkdf-counter-holder mkdf-predefined-layout">
<div class="mkdf-counter-inner">
<span class="mkdf-counter mkdf-zero-counter">10000</span>
<h6 class="mkdf-counter-title" style="color: #FFFFFF">
Followers </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-0263021 elementor-widget elementor-widget-spacer" data-id="0263021" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-20 elementor-top-column elementor-element elementor-element-ac0490a" data-id="ac0490a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a55ab6b elementor-widget elementor-widget-mkdf_counter" data-id="a55ab6b" data-element_type="widget" data-widget_type="mkdf_counter.default">
<div class="elementor-widget-container">
<div class="mkdf-counter-holder mkdf-predefined-layout">
<div class="mkdf-counter-inner">
<span class="mkdf-counter mkdf-zero-counter">5</span>
<h6 class="mkdf-counter-title" style="color: #FFFFFF">
Experience </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-e3454b7 elementor-widget elementor-widget-spacer" data-id="e3454b7" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-2c3a9e1 elementor-section-full_width mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-id="2c3a9e1" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-36c1556" data-id="36c1556" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-fb3b749 elementor-widget elementor-widget-mkdf_section_title" data-id="fb3b749" data-element_type="widget" data-widget_type="mkdf_section_title.default">
<div class="elementor-widget-container">
<div class="mkdf-section-title-holder " style="text-align: center">
<div class="mkdf-st-inner">
<h6 class="mkdf-st-subtitle">
The RS DESIGNS </h6>
<h2 class="mkdf-st-title">
Some Of Our Designs </h2>
<div class="mkdf-st-line"></div>
</div>
</div> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-132563b elementor-section-full_width mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-id="132563b" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-515afc2" data-id="515afc2" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-0959c4a elementor-widget elementor-widget-mkdf_portfolio_list" data-id="0959c4a" data-element_type="widget" data-widget_type="mkdf_portfolio_list.default">
<div class="elementor-widget-container">
<div class="mkdf-portfolio-list-holder mkdf-grid-list mkdf-grid-masonry-list mkdf-pl-masonry mkdf-three-columns mkdf-normal-space mkdf-pl-predefined-layout-stairs mkdf-disable-bottom-space mkdf-pl-gallery-overlay mkdf-pl-pag-no-pagination " data-type="masonry" data-number-of-columns="three" data-space-between-items="normal" data-number-of-items="-1" data-enable-fixed-proportions="no" data-enable-image-shadow="no" data-tag="Design" data-orderby="date" data-order="ASC" data-item-style="gallery-overlay" data-enable-title="yes" data-title-tag="h5" data-enable-category="yes" data-enable-excerpt="no" data-predefined-layout="stairs" data-pagination-type="no-pagination" data-filter="no" data-enable-article-animation="no" data-portfolio-slider-on="no" data-enable-loop="yes" data-enable-autoplay="yes" data-slider-speed="5000" data-slider-speed-animation="800" data-enable-navigation="yes" data-enable-pagination="yes" data-list-is-slider="no" data-custom-stylization="no" data-max-num-pages="0" data-next-page="2">
<div class="mkdf-pl-inner mkdf-outer-space mkdf-masonry-list-wrapper clearfix">
<div class="mkdf-masonry-grid-sizer"></div>
<div class="mkdf-masonry-grid-gutter"></div>
<article class="mkdf-pl-item mkdf-item-space post-1956 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior portfolio-tag-urban">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/vintage-chairs/" target="_self">
<img width="800" height="1112" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-1.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="d" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-1.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/vintage-chairs/" target="_self">
Vintage Chairs </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/vintage-chairs/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1957 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/plants-in-room/" target="_self">
<img width="800" height="1183" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-2.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="c" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-2.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/plants-in-room/" target="_self">
Plants in Room </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/plants-in-room/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1958 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior portfolio-tag-interior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/abstract-architecture/" target="_self">
<img width="800" height="569" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-3.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="j" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-3.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/abstract-architecture/" target="_self">
Abstract Architecture </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/abstract-architecture/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1959 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior portfolio-tag-interior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/simple-home/" target="_self">
<img width="800" height="1299" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-4.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="F" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-4.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/simple-home/" target="_self">
Simple Home </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/simple-home/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1960 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/office-meeting-room/" target="_self">
<img width="800" height="579" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-5.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="F" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-5.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/office-meeting-room/" target="_self">
Office Meeting Room </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/office-meeting-room/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1968 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/building/" target="_self">
<img width="800" height="1208" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-7.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="f" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-7.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/building/" target="_self">
Building </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/building/" target="_self"></a>
</div>
</article>
<article class="mkdf-pl-item mkdf-item-space post-1979 portfolio-item type-portfolio-item status-publish has-post-thumbnail hentry portfolio-category-interior portfolio-tag-design portfolio-tag-designs portfolio-tag-exterior portfolio-tag-interior">
<div class="mkdf-pl-item-inner">
<div class="mkdf-pli-image">
<a itemprop="url" class="mkdf-pli-image-main" href="https://thersdesigns.com/portfolio-item/interior-ideas/" target="_self">
<img width="800" height="608" src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-8.jpg" class="attachment-full size-full wp-post-image jetpack-lazy-image" alt="d" decoding="async" data-lazy-src="https://thersdesigns.com/wp-content/uploads/2019/03/home-3-port-img-8.jpg?is-pending-load=1" srcset="data:image/gif;base64 ,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7 "> </a>
</div>
<div class="mkdf-pli-text-holder">
<div class="mkdf-pli-text-wrapper">
<div class="mkdf-pli-text">
<h5 itemprop="name" class="mkdf-pli-title entry-title">
<a itemprop="url" href="https://thersdesigns.com/portfolio-item/interior-ideas/" target="_self">
Interior Ideas </a>
</h5>
<div class="mkdf-pli-category-holder">
<span class="mkdf-pli-category-outer"><a itemprop="url" class="mkdf-pli-category" href="https://thersdesigns.com/portfolio-category/interior/">Interior</a></span>
</div>
</div>
</div>
</div>
<a itemprop="url" class="mkdf-pli-link mkdf-block-drag-link" href="https://thersdesigns.com/portfolio-item/interior-ideas/" target="_self"></a>
</div>
</article> </div>
</div> </div>
</div>
</div>
</div>
</div>
</section>
<section class="elementor-section elementor-top-section elementor-element elementor-element-b7bec8c elementor-section-full_width mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-id="b7bec8c" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-53e147d" data-id="53e147d" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<section class="elementor-section elementor-inner-section elementor-element elementor-element-b9d57f1 elementor-section-full_width elementor-section-content-top elementor-section-height-default elementor-section-height-default mkdf-parallax-row-no mkdf-content-aligment-left mkdf-elementor-row-grid-no mkdf-disabled-bg-image-bellow-no" data-id="b9d57f1" data-element_type="section">
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-4d468ed" data-id="4d468ed" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-24ed762 elementor-widget elementor-widget-heading" data-id="24ed762" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<style>/*! elementor - v3.12.0 - 29-03-2023 */
.elementor-heading-title{padding:0;margin:0;line-height:1}.elementor-widget-heading .elementor-heading-title[class*=elementor-size-]>a{color:inherit;font-size:inherit;line-height:inherit}.elementor-widget-heading .elementor-heading-title.elementor-size-small{font-size:15px}.elementor-widget-heading .elementor-heading-title.elementor-size-medium{font-size:19px}.elementor-widget-heading .elementor-heading-title.elementor-size-large{font-size:29px}.elementor-widget-heading .elementor-heading-title.elementor-size-xl{font-size:39px}.elementor-widget-heading .elementor-heading-title.elementor-size-xxl{font-size:59px}</style><h3 class="elementor-heading-title elementor-size-default">THE CORE COMPANY VALUES</h3> </div>
</div>
<div class="elementor-element elementor-element-4896dd4 elementor-widget elementor-widget-mkdf_section_title" data-id="4896dd4" data-element_type="widget" data-widget_type="mkdf_section_title.default">
<div class="elementor-widget-container">
<div class="mkdf-section-title-holder ">
<div class="mkdf-st-inner">
<h6 class="mkdf-st-text">
At RS Designs, our core company values are centered around creating exceptional experiences for our clients </h6>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-782caaf elementor-widget elementor-widget-text-editor" data-id="782caaf" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>We are dedicated to delivering high-quality interior design solutions that meet and exceed our clients’ expectations. We believe in building strong relationships with our clients based on trust, transparency, and open communication. We strive to understand their unique needs and goals, and we work tirelessly to ensure that they are satisfied with our services.</p> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-8e1cf85" data-id="8e1cf85" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-7b96620 elementor-widget elementor-widget-heading" data-id="7b96620" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">EXHIBITION</h4> </div>
</div>
<div class="elementor-element elementor-element-c818d5e elementor-widget elementor-widget-text-editor" data-id="c818d5e" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>– Design Fusion</p><p>– Luxury Living</p><p>– Sustainable Spaces</p><p>– Modern Marvels</p><p>– Rustic Retreats</p><p>– Hamilton Showcase</p> </div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-33 elementor-inner-column elementor-element elementor-element-5594ceb" data-id="5594ceb" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-35e3f8d elementor-widget elementor-widget-heading" data-id="35e3f8d" data-element_type="widget" data-widget_type="heading.default">
<div class="elementor-widget-container">
<h4 class="elementor-heading-title elementor-size-default">Awards</h4> </div>
</div>
<div class="elementor-element elementor-element-2de4b4d elementor-widget elementor-widget-text-editor" data-id="2de4b4d" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<p>– Design Excellence</p><p>– Sustainability Award</p><p>– Innovative Design</p><p>– Small Business</p><p>– Innovative Design</p><p>– Client Satisfaction</p> </div>
</div>
</div>
</div>
</div>
</section>
</div>
</div>
</div>
</section>
<section class="mkdf-parallax-row-holder elementor-section elementor-top-section elementor-element elementor-element-495d7a6 elementor-section-full_width elementor-section-content-middle mkdf-parallax-row-holder mkdf-content-aligment-center mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-disabled-bg-image-bellow-no" data-parallax-bg-speed="1" data-parallax-bg-image="https://dor.qodeinteractive.com/elementor/wp-content/uploads/2019/03/home-3-parallax-2.jpg" data-parallax-bg-height="0" data-id="495d7a6" data-element_type="section" data-settings='{"mikado_parallax_image":{"url":"https:\/\/dor.qodeinteractive.com\/elementor\/wp-content\/uploads\/2019\/03\/home-3-parallax-2.jpg","id":1399,"size":""}}'>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-100 elementor-top-column elementor-element elementor-element-db1f13a" data-id="db1f13a" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-a0d8f50 elementor-widget elementor-widget-text-editor" data-id="a0d8f50" data-element_type="widget" data-widget_type="text-editor.default">
<div class="elementor-widget-container">
<h1 style="text-align: center;">do you want to work with us?</h1> </div>
</div>
<div class="elementor-element elementor-element-f7f78b4 elementor-widget elementor-widget-spacer" data-id="f7f78b4" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
<div class="elementor-element elementor-element-d457a06 elementor-widget elementor-widget-mkdf_button" data-id="d457a06" data-element_type="widget" data-widget_type="mkdf_button.default">
<div class="elementor-widget-container">
<a itemprop="url" href="/contact-us/" target="_self" class="mkdf-btn mkdf-btn-medium mkdf-btn-solid">
<span class="mkdf-btn-border-holder"></span>
<span class="mkdf-btn-line-holder"></span>
<span class="mkdf-btn-text">Contact Us</span>
</a> </div>
</div>
</div>
</div>
</div>
</section>
<section class="mkdf-parallax-row-holder elementor-section elementor-top-section elementor-element elementor-element-907ab1e elementor-section-full_width mkdf-parallax-row-holder mkdf-elementor-row-grid-section elementor-section-height-default elementor-section-height-default mkdf-content-aligment-left mkdf-disabled-bg-image-bellow-no" data-parallax-bg-speed="1" data-parallax-bg-image="https://dor.qodeinteractive.com/elementor/wp-content/uploads/2020/06/parallax-img-new-1.jpg" data-parallax-bg-height="0" data-id="907ab1e" data-element_type="section" data-settings='{"mikado_parallax_image":{"url":"https:\/\/dor.qodeinteractive.com\/elementor\/wp-content\/uploads\/2020\/06\/parallax-img-new-1.jpg","id":5923,"size":""}}'>
<div class="elementor-container elementor-column-gap-no">
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-6e2c051" data-id="6e2c051" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-cb1c597 elementor-widget elementor-widget-mkdf_pie_chart" data-id="cb1c597" data-element_type="widget" data-widget_type="mkdf_pie_chart.default">
<div class="elementor-widget-container">
<div class="mkdf-pie-chart-holder ">
<div class="mkdf-pc-percentage" data-percent="95" data-bar-color="#8b8b8b" data-track-color="transparent">
<span class="mkdf-pc-percent">95</span>
</div>
<div class="mkdf-pc-text-holder">
<h5 class="mkdf-pc-title">Design Thinking</h5>
<p class="mkdf-pc-text">Analyzing client needs and enhancing spaces with creative solutions.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-da27176 elementor-widget elementor-widget-spacer" data-id="da27176" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-a116fe4" data-id="a116fe4" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-5228a5f elementor-widget elementor-widget-mkdf_pie_chart" data-id="5228a5f" data-element_type="widget" data-widget_type="mkdf_pie_chart.default">
<div class="elementor-widget-container">
<div class="mkdf-pie-chart-holder ">
<div class="mkdf-pc-percentage" data-percent="90" data-bar-color="#8b8b8b" data-track-color="transparent">
<span class="mkdf-pc-percent">90</span>
</div>
<div class="mkdf-pc-text-holder">
<h5 class="mkdf-pc-title">Communication</h5>
<p class="mkdf-pc-text">Effectively conveying design concepts with clients, contractors, and stakeholders.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-d3610f8 elementor-widget elementor-widget-spacer" data-id="d3610f8" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-7f9fda8" data-id="7f9fda8" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-e89ec4b elementor-widget elementor-widget-mkdf_pie_chart" data-id="e89ec4b" data-element_type="widget" data-widget_type="mkdf_pie_chart.default">
<div class="elementor-widget-container">
<div class="mkdf-pie-chart-holder ">
<div class="mkdf-pc-percentage" data-percent="85" data-bar-color="#8b8b8b" data-track-color="transparent">
<span class="mkdf-pc-percent">85</span>
</div>
<div class="mkdf-pc-text-holder">
<h5 class="mkdf-pc-title">Project Management</h5>
<p class="mkdf-pc-text">Overseeing design process efficiently and within budget.</p>
</div>
</div> </div>
</div>
<div class="elementor-element elementor-element-2743aa9 elementor-widget elementor-widget-spacer" data-id="2743aa9" data-element_type="widget" data-widget_type="spacer.default">
<div class="elementor-widget-container">
<div class="elementor-spacer">
<div class="elementor-spacer-inner"></div>
</div>
</div>
</div>
</div>
</div>
<div class="elementor-column elementor-col-25 elementor-top-column elementor-element elementor-element-9912cdc" data-id="9912cdc" data-element_type="column">
<div class="elementor-widget-wrap elementor-element-populated">
<div class="elementor-element elementor-element-d9782d9 elementor-widget elementor-widget-mkdf_pie_chart" data-id="d9782d9" data-element_type="widget" data-widget_type="mkdf_pie_chart.default">
<div class="elementor-widget-container">
<div class="mkdf-pie-chart-holder ">
<div class="mkdf-pc-percentage" data-percent="100" data-bar-color="#8b8b8b" data-track-color="transparent">
<span class="mkdf-pc-percent">100</span>
</div>
<div class="mkdf-pc-text-holder">
<h5 class="mkdf-pc-title">Attention to Detail</h5>
<p class="mkdf-pc-text">Meticulously selecting colors, furniture, and accessories for a cohesive look.</p>
</div>
</div> </div>
</div>