-
Notifications
You must be signed in to change notification settings - Fork 0
/
en.html
1101 lines (943 loc) · 51.5 KB
/
en.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<script src="js/jquery-3.2.1.min.js"></script>
<script src="js/fetch/index_english.js"></script>
<title>CDS Apply</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="images/icon.png" />
<meta name="description" content="Kendu Student Dispatch Institute">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet">
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<link rel="stylesheet" type="text/css" href="styles/bootstrap-4.1.2/bootstrap.min.css">
<link href="plugins/font-awesome-4.7.0/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/owl.theme.default.css">
<link rel="stylesheet" type="text/css" href="plugins/OwlCarousel2-2.2.1/animate.css">
<link href="plugins/colorbox/colorbox.css" rel="stylesheet" type="text/css">
<link href="plugins/jquery-datepicker/jquery-ui.css" rel="stylesheet" type="text/css">
<link href="plugins/jquery-timepicker/jquery.timepicker.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="styles/main_styles.css">
<link rel="stylesheet" type="text/css" href="styles/responsive.css">
<link rel="stylesheet" type="text/css" href="styles/blog_responsive.css">
</head>
<style>
@font-face {
font-family: myFirstFont;
src:url("font/Sahel.ttf");
}
@font-face{
font-family: MontserratThin;
src:url("font/Montserrat-Thin.ttf");
}
@font-face{
font-family: MontserratReg;
src:url("font/Montserrat-Regular.ttf");
}
.__footerFont{
font-family: MontserratThin;
}
.__footerCDSApply{
font-family: MontserratReg
}
.saheltitle
{
font-family: myFirstFont;
}
#__allposts:hover{
color: #fcc838;
}
.blog
{
width: 100%;
background: #FFFFFF;
padding-top: 195px;
padding-bottom: 102px;
}
.blog_col
{
margin-bottom: 70px;
}
.blog_col:nth-child(even)
{
-webkit-transform: translateY(70px);
-moz-transform: translateY(70px);
-ms-transform: translateY(70px);
-o-transform: translateY(70px);
transform: translateY(70px);
}
.blog_post
{
background-color: white;
width: 100%;
border: solid 1px black;
box-shadow: 0px 45px 70px rgba(0,0,0,1);
}
.blog_post_image
{
width: 100%;
}
.blog_post_image img
{
max-width: 100%;
}
.blog_post_date
{
position: absolute;
left: 16px;
top: -24px;
width: 136px;
height: 48px;
background: #FFFFFF;
text-align: center;
border: solid 1px black;
box-shadow: 0px 45px 70px rgba(0,0,0,1);
}
.blog_post_date a
{
display: block;
font-size: 16px;
color: #232323;
line-height: 44px;
}
.blog_post_content
{
padding-top: 23px;
padding-bottom: 23px;
}
.blog_post_title
{
}
.blog_post_title a
{
font-size: 36px;
color: #232323;
line-height: 1.2;
}
.blog_post_title a:hover
{
color: #c4ab9f;
}
.blog_post_info
{
display: inline-block;
margin-top: 13px;
}
.blog_post_info ul
{
width: 100%;
height: 30px;
background: #c4ab9f;
padding-left: 23px;
padding-right: 26px;
}
.blog_post_info ul li,
.blog_post_info ul li a
{
font-size: 16px;
color: #FFFFFF;
}
.blog_post_info ul li a:hover
{
color: #232323;
}
.blog_post_info ul li
{
position: relative;
}
.blog_post_info ul li:not(:last-child)::after
{
display: inline-block;
content: '|';
margin-left: 8px;
margin-right: 8px;
}
.blog_post_text
{
margin-top: 32px;
}
.load_more_row
{
margin-top: 70px;
}
.load_more_button
{
width: 216px;
height: 48px;
background: #c4ab9f;
border: solid 2px #c4ab9f;
}
.load_more_button:hover
{
background: transparent;
}
.load_more_button a
{
color: #FFFFFF;
}
.load_more_button:hover a
{
color: #c4ab9f;
}
.anima
{
opacity: 1;
}
.hov:hover{
color: #ffce00;
}
@media screen and (min-width:800px) {
.hover09 figure img {
-webkit-filter: sepia(100%);
filter: sepia(100%);
-webkit-transition: .3s ease-in-out;
transition: .3s ease-in-out;
}
.hover09 figure:hover img {
-webkit-filter: sepia(0);
filter: sepia(0);
}
}
@media screen and (max-width: 600px) {
.hid {
display: none;
}
}
@media screen and (max-width: 900px) {
.hid2 {
display: none;
}
}
.bgedited{
background-image: url(images/aboutus.jpg);
background-repeat: no-repeat;
background-size: cover;
}
@media screen and (max-width:1500px) {
.bgedited {
background-image: url(images/aboutus.jpg);
background-repeat: no-repeat;
background-size: cover;
}
}
@media screen and (max-width:1500px) {
.bgedited2 {
/*background-image: url(images/Languages.jpg);*/
background-size: cover;
}
}
.search-input{
direction: rtl;
/*border-top-right-radius: 1rem;
border-bottom-right-radius: 1rem;
border-bottom-left-radius: 0;
border-top-left-radius: 0;
*/
padding-right: 10px;
border-radius: 0.8rem;
/*border-bottom: 2px solid yellow;*/
background-color: transparent;
color: white;
border:solid 2px white;
}
.search-input::placeholder{
color: #fff;
}
.search-input:focus{
outline: none;
}
.search-btn{
border: 0;
color: white !important;
font-size: 18px;
padding-right: 3px;
background-color: transparent;
}
</style>
<body style="font-family: myFirstFont;">
<div class="super_container">
<header class="header">
<div class="container">
<div class="row">
<div class="col">
<div class="header_content d-flex flex-row align-items-center justify-content-start textrtl ">
<div class="logo">
<a href="https://cdsapply.com">
<div class="text-center">
<img style="width: 12rem !important;
height: 7rem !important;
margin-bottom: 1rem !important;
"
class="logo-navbar"
src="images/ci.png">
</div>
<!-- <div>we build careers</div> -->
</a>
</div>
<nav class="main_nav">
<ul class="d-flex flex-row align-items-center justify-content-start ">
<li><a href="#contries"> Contries</a></li>
<li><a href="#blog__"> Blog</a></li>
<li><a href="#wbn">Consultation</a></li>
<li><a href="cando-testimonial.html"> Testimonial</a></li>
<li><a href="#contactus">Contact US</a></li>
<li><a class="btn btn-outline-light" href="index.html" style="font-size: 12px;">FA</a></li>
<li class=" rounded">
<button type="submit" id="searchQbtn" aria-label="Search..." class="search-btn" onclick="gotosearch()"><i class="fa fa-search"></i></button>
<input class="search-input" name="q" type="text" id="searchQ" placeholder="...Search" value="" />
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</header>
<div class="hamburger_bar trans_400 d-flex flex-row align-items-center justify-content-start">
<div class="hamburger">
<div class="menu_toggle d-flex flex-row align-items-center justify-content-start">
<span> MENU </span>
<div class="hamburger_container">
<div class="menu_hamburger">
<div class="line_1 hamburger_lines" style="transform: matrix(1, 0, 0, 1, 0, 0);"></div>
<div class="line_2 hamburger_lines" style="visibility: inherit; opacity: 1;"></div>
<div class="line_3 hamburger_lines" style="transform: matrix(1, 0, 0, 1, 0, 0);"></div>
</div>
</div>
</div>
</div>
</div>
<div class="menu trans_800">
<div class="menu_content d-flex flex-column align-items-center justify-content-center text-center">
<ul>
<li><a href="index.html" class="btn btn-outline-light align-content-center" style="width: fit-content;margin-left:37%" href="index.html">FA</a></li>
<li><a href="#contries" onClick="window.location.reload()"> Contries</a></li>
<li><a href="#blog__" onClick="window.location.reload()">Blog</a></li>
<li><a href="#wbn" onClick="window.location.reload()">Consultation</a></li>
<li><a href="https://cdsapply.com/cando-testimonial.html"> Testimonial</a></li>
<li><a href="#contactus" onClick="window.location.reload()">Contact US</a></li>
<!-- <li class=" rounded">
<button type="submit" id="searchQbtn" aria-label="Search..." class="search-btn" onclick="gotosearch()"><i class="fa fa-search"></i></button>
<input class="search-input" name="q" id="searchQ" type="text" placeholder=" جست و جو..." value="" />
</li> -->
</ul>
</div>
<div class="menu_reservations_phone ml-auto"><div class="logo">
<a href="https//cdsapply.com">
<div class="__footerCDSApply">C D S Apply</div>
<div class="mt-3 __footerFont">we build careers</div>
</a>
</div></div>
</div>
<div class="home">
<div class="parallax_background parallax-window" data-parallax="scroll" data-image-src="images/background.jpg" data-speed="0.3"></div>
<div class="home_container text-center">
<div class="container">
<div class="row">
<div class="col">
<div class="home_content text-center">
<div style="width: 100%"><div style="width: 50%;margin-top: -30%;margin-bottom: -10%;margin-left: 25%" class="hover09 "> <figure><img width="100%" src="images/logo.png"></figure></div></div>
<div class="home_title "><h1 class="__footerCDSApply hov" style="text-shadow: 3px 3px #000000;">CDS Apply</h1></div>
<div class="home_title"><h1 class="__footerCDSApply hov" style="font-size: 50px; text-shadow: 3px 3px #000000;">Study Abroad & Student Consultancy Institute</h1></div>
<div class="home_text ml-auto mr-auto">
<p class="__footerCDSApply hov" style="text-shadow: 1px 1px #000000; font-size: 22px;">Study in Canada, Australia, New Zealand and other countries</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="scroll_icon mb-3 hid"></div>
</div>
<div class="intro" >
<div class="container">
<div class="row">
<div class="col">
<div class="intro_content" >
<div class="row ">
<div class="intro_subtitle page_subtitle col-lg-4 anima ">Our Services</div>
<div class="intro_title text-right col-lg-8 anima"><h2 style="font-size: 43px;">We are here to help!</h2></div>
</div>
<div class="intro_text text-left mt-0" dir="ltr">
<p style="line-height: 1.30;">Our Study Abroad Services:</p>
<p style="line-height: 1.30;">Sometimes making the right decision requires the help and experience of others, especially when these it has a great impact on one’s future. CDS Apply will help you find the best destination with the help of its experienced consultants.</p>
<p style="line-height: 1.30;"> CDS Apply Admission Services: <br><br>
- Writing an academic CV, tailored to your field and career; <br>
- Editing Your Statement of Purpose/Intent Letter; <br>
- Edit Your Research Proposal; <br>
- Apply for Available Scholarships; <br>
- Obtain Insurance; <br>
- Reservation of Accommodation.
</p>
<p style="line-height: 1.30;">CDS Apply Visa Services:</p>
<p style="line-height: 1.30;">After getting accepted, CDS Apply will also assist you in the important stage of getting a visa. Consultation in preparing and reviewing your documents is done by experienced lawyers working with us. In the sensitive process of getting a visa, we will try to highlight all your strengths and try to cover weaknesses to increase your chances of getting a visa. If required and requested, we will help you apply for a tourist visa for a member of your family to accompany you on your first landing.</p>
</div>
<!-- <div class="button sig_button trans_200 anima mt-0 " style="margin-left: 60%"><a href="services.html">Other Services </a></div> -->
</div>
<div class="row hid2 ">
<div class="col-xl-4 col-md-6 intro_col ">
<div class="intro_image" data-aos="fade-right" data-aos-duration="3000"><img src="images/Services.jpg" alt="https://unsplash.com/@quanle2819"></div>
</div>
<div class="col-xl-4 col-md-6 intro_col ">
<div class="intro_image" data-aos="fade-right"
data-aos-duration="1500"><img src="images/Services2.jpg" alt="https://unsplash.com/@fabmag"></div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="bgedited">
<div class="container">
<div class="row " >
<div class="col-lg-8 mt-4 mb-4">
<div class="text-left home_text rounded p-3" style="background-color: rgb(0, 0, 0,0.4)" dir="ltr">
<p>CDS Apply is a Gateway to Study and Travel Abroad!</p>
<p>CDS was founded in 2011 and is known as a gateway to travel, study abroad. It is a successful international company based in Iran providing travel and study s-abroad services in Asia, Oceania, Europe and America. With the contribution of highly skilled and academic consultants, it has established strong ties with education providers in Australia, Canada, New Zealand and many other countries. We are ready to shake hands with new partners, including educators, agents and service providers. Let's hope for a fruitful cooperation.</p>
<p>CDS Apply is also built on the principles of offering quality and reliable services. Our diversified service range continues to grow by following trends, improving our standard products, and listening to our clients. Our unique service has established our place in the education business in Iran. This in turn allows us to make a distinctive and substantial impact for our clients. We observe not only the rules and regulations of the Iranian Ministry of Science, Research and Technology but also consider the laws in the host countries where our clients opt to study. A pre-screening process diminishes the rate of unsuccessful arrangements and all necessary steps are taken to guarantee successful acquisition of admission as well as visa in order to satisfy both our clients and the colleges and universities that CDS works with.</p>
</div>
</div>
<div class="col-lg-4">
<img style="width: 100%;margin-top: -10%;margin-bottom: -10% " src="images/logo.png" >
<div class="text-center home_text mt-0" style="background-color: rgb(0, 0, 0,0.4)">
<p style="margin-bottom: -0.1%;color: yellow">CDS Apply</p>
<p style="margin-bottom: -0.1%;color: yellow">(Cando Daneshavaran Sam)</p>
<p style="margin-bottom: -0.1%;color: yellow">An MSRT Authorized Study Abroad &
<p style="margin-bottom: -0.1%;color: yellow">Student Consultancy Institute</p>
<p style="margin-bottom: -0.1%;color: yellow">Licence No. 67386-1742</p>
</div>
</div>
</div>
</div>
</div>
<div class="sig" id="wbn">
<div class="sig_content_container" >
<div class="container">
<div class="row">
<div class="col-lg-7" data-aos="fade-right">
<div class="sig_content">
<div class="sig_subtitle page_subtitle ">Applicant Evaluation</div>
<div class="sig_title text-right "><h1 class="saheltitle">Assessment Form</h1></div>
<div class="sig_name_container d-flex flex-row align-items-start justify-content-start">
<div class="sig_name text-left" dir="ltr">Fill out this form and let us evaluate you.</div>
</div>
<div class="button sig_button trans_200 "><a href="consultation.html">Start!</a></div>
</div>
</div>
</div>
</div>
</div>
<div class="sig_image_container">
<div class="container">
<div class="row">
<div class="col-lg-7 offset-lg-5">
<div class="sig_image hid2" data-aos="fade-left">
<div class="background_image" style="background-image:url(images/CDSApplyform.jpg)"></div>
<img src="images/CDSApplyform.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div>
<div class="row">
<div class="col">
<div class="themenu_title_bar_container">
<div class="themenu_stars text-center page_subtitle">Your Destination</div>
<div class="themenu_title_bar d-flex flex-column align-items-center justify-content-center">
<div class="themenu_title saheltitle" id="contries">Study in</div>
</div>
</div>
</div>
</div>
<div class="parallax_background parallax-window" data-parallax="scroll" data-image-src="images/World.jpg" data-speed="0.2"></div>
<div class="container">
<div class="themenu bg-transparent">
<div class="row themenu_row ">
<div class="col-lg-4 themenu_column" data-aos="zoom-out-left">
<a href="posts.html?country=australia&lang=en">
<div class="themenu_col text-center bg-white box"
style="background-image: url('images/aus.jpg'); background-repeat: no-repeat; background-size: cover;">
<img src="images/empty-png.png">
<a href="posts.html?country=australia&lang=en">
<div class="themenu_col_title col-lg-11 mt-3 " data-aos="zoom-in-down" style="background-color: white;">Australia</div>
</a>
</div>
</a>
</div>
<div class="col-lg-4 themenu_column" data-aos="flip-up">
<a href="posts.html?country=canada&lang=en">
<div class="themenu_col text-center bg-white box"
style="background-image: url('images/canada.jpg'); background-repeat: no-repeat; background-size: cover;">
<img src="images/empty-png.png">
<a href="posts.html?country=canada&lang=en">
<div class="themenu_col_title col-lg-11 mt-3" data-aos="zoom-in-down" style="background-color: white;">Canada</div>
</a>
</div>
</a>
</div>
<div class="col-lg-4 themenu_column" data-aos="zoom-out-right">
<a href="posts.html?country=newzealand&lang=en">
<div class="themenu_col text-center bg-white box"
style="background-image: url('images/newz.jpg'); background-repeat: no-repeat; background-size: cover;">
<img src="images/empty-png.png">
<a href="posts.html?country=newzealand&lang=en">
<div class="themenu_col_title col-lg-11 mt-3 " data-aos="zoom-in-down" style="padding-left: 4px !important; background-color: white;">New Zealand</div>
</a>
</div>
</a>
</div>
</div>
</div>
<div class="intro_title text-center container " data-aos="zoom-in-down"><h2 class="bg-white saheltitle" style="margin-bottom:0"> ــــــــ Other Countries ــــــــ</h2></div>
</div>
<div class="bg-white row ">
<div class="col-lg-4">
<div id="carouselExampleIndicators" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold rounded " style="width: 20%;margin-left: 40%;border: dotted 2px black;font-size: 18px; box-shadow: 0px 0px 30px rgba(0,0,0,0.5);" role="listbox">
<div class="carousel-item active"><a href="posts.html?country=china&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/china.png" alt="Third slide">
<div class="card-title text-center saheltitle">China</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=turkey&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/turkey.png" alt="Third slide">
<div class="card-title text-center saheltitle">Turkey</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=cyprus&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/cyprus.png" alt="First slide">
<div class="card-title text-center saheltitle">Cyprus</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=russia&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/russia.png" alt="Third slide">
<div class="card-title text-center saheltitle">Russia</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators" style="margin-left: 25%" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
<span class="sr-only">Previous</span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators" style="margin-right: 25%" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<div class="col-lg-4">
<div id="carouselExampleIndicators2" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold rounded " style="width: 20%;margin-left: 40%;border: dotted 2px black;font-size: 18px;box-shadow: 0px 0px 30px rgba(0,0,0,0.5);" role="listbox">
<div class="carousel-item active"><a href="posts.html?country=germany&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/germany.png" alt="First slide">
<div class="card-title text-center saheltitle">Germany</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=italy&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/italy.png" alt="Third slide">
<div class="card-title text-center saheltitle">Italy</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=unitedkingdom&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/uk.png" alt="First slide">
<div class="card-title text-center saheltitle">UK</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=spain&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/spain.png" alt="Third slide">
<div class="card-title text-center saheltitle">Spain</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators2" style="margin-left: 25%" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators2" style="margin-right: 25%" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-lg-4">
<div id="carouselExampleIndicators3" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold rounded " style="width: 20%;margin-left: 40% ;border: dotted 2px black;font-size: 18px;box-shadow: 0px 0px 30px rgba(0,0,0,0.5);" role="listbox">
<div class="carousel-item active"><a href="posts.html?country=poland&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/poland.png" alt="First slide">
<div class="card-title text-center saheltitle">Poland</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=hungary&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/hungary.png" alt="Third slide">
<div class="card-title text-center saheltitle">Hungary</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=sweden&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/sweden.png" alt="First slide">
<div class="card-title text-center saheltitle">Sweden</div>
</a></div>
<div class="carousel-item"><a href="posts.html?country=switzerland&lang=en">
<img style="width: 100%;padding: 5px " class="d-block img-fluid rounded" src="images/swiss.png" alt="Third slide">
<div class="card-title text-center saheltitle">Switzerland</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators3" style="margin-left: 25%" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators3" style="margin-right: 25%" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
</div>
</div>
<hr>
<!-- ============================================================================================== -->
<!-- <div class="bgedited2">
<div class="row">
<div class="col">
<div class="themenu_title_bar_container">
<div class="themenu_stars text-center page_subtitle">Language Courses</div>
<div class="themenu_title_bar d-flex flex-column align-items-center justify-content-center">
<div class="themenu_title ">CANDO Language Courses</div>
</div>
</div>
</div>
</div>
<div class="parallax_background parallax-window" data-parallax="scroll" data-image-src="images/Languages.jpg" data-speed="0.8" ></div>
<div class="container" >
<div class="blog bg-transparent">
<div class="row">
<div class="col-lg-3 blog_col ">
<div id="carouselExampleIndicators11" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold " role="listbox">
<div class="carousel-item active pt-4"><a href="posts.html?lg=malta&lang=en">
<div class="blog_post " data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/maltaLG.jpg" alt="https://unsplash.com/@patrick_schneider"></div>
<div class="blog_post_date"><a href="posts.html?lg=malta&lang=en">Malta</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center "><a href="posts.html?lg=malta&lang=en" style="font-size: 25px">Language Courses In Malta</a></div>
</div>
</div>
</a></div>
<div class="carousel-item pt-4"><a href="posts.html?lg=malta&lang=en">
<div class="blog_post " data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/maltaLG.jpg" alt="https://unsplash.com/@patrick_schneider"></div>
<div class="blog_post_date"><a href="posts.html?lg=malta&lang=en">Malta</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center "><a href="posts.html?lg=malta&lang=en" style="font-size: 25px">Language Courses In Malta</a></div>
</div>
</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators11" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators11" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-lg-3 blog_col " style="margin-bottom: 150px">
<div id="carouselExampleIndicators12" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold " role="listbox">
<div class="carousel-item active pt-4"><a href="posts.html?lg=england&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/engLG.jpg" alt="https://unsplash.com/@tashytown"></div>
<div class="blog_post_date"><a href="posts.html?lg=england&lang=en">England</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=england&lang=en" style="font-size: 25px">Language Courses In England</a></div>
</div>
</div>
</a></div>
<div class="carousel-item pt-4"><a href="posts.html?lg=england&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/engLG.jpg" alt="https://unsplash.com/@tashytown"></div>
<div class="blog_post_date"><a href="posts.html?lg=england&lang=en">England</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=england&lang=en" style="font-size: 25px">Language Courses In England</a></div>
</div>
</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators12" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators12" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-lg-3 blog_col ">
<div id="carouselExampleIndicators13" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold " role="listbox">
<div class="carousel-item active pt-4"><a href="posts.html?lg=malaysia&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/malaysiaLG.jpg" alt="https://unsplash.com/@stefanjonhson"></div>
<div class="blog_post_date"><a href="posts.html?lg=malaysia&lang=en">Malaysia</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=malaysia&lang=en" style="font-size: 25px">Language Courses In Malaysia</a></div>
</div>
</div>
</a>
</div>
<div class="carousel-item pt-4"><a href="posts.html?lg=malaysia&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/malaysiaLG.jpg" alt="https://unsplash.com/@stefanjonhson"></div>
<div class="blog_post_date"><a href="posts.html?lg=malaysia&lang=en">Malaysia</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=malaysia&lang=en" style="font-size: 25px">Language Courses In Malaysia</a></div>
</div>
</div>
</a>
</div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators13" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators13" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
<div class="col-lg-3 blog_col ">
<div id="carouselExampleIndicators14" class="carousel slide my-4" data-ride="carousel">
<div class="carousel-inner text-dark font-weight-bold " role="listbox">
<div class="carousel-item active pt-4"><a href="posts.html?lg=swiss&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/swissLG.jpg" alt="Jackelin Slack"></div>
<div class="blog_post_date"><a href="posts.html?lg=swiss&lang=en">Swiss</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=swiss&lang=en" style="font-size: 25px">Language Courses In Switzerland</a></div>
</div>
</div>
</a></div>
<div class="carousel-item pt-4"><a href="posts.html?lg=swiss&lang=en">
<div class="blog_post" data-aos="fade-up"
data-aos-anchor-placement="bottom-bottom">
<div class="blog_post_image_container">
<div class="blog_post_image"><img src="images/swissLG.jpg" alt="Jackelin Slack"></div>
<div class="blog_post_date"><a href="posts.html?lg=swiss&lang=en">Swiss</a></div>
</div>
<div class="blog_post_content">
<div class="blog_post_title text-center"><a href="posts.html?lg=swiss&lang=en" style="font-size: 25px">Language Courses In Switzerland</a></div>
</div>
</div>
</a></div>
</div>
<a class="carousel-control-prev" href="#carouselExampleIndicators14" role="button" data-slide="prev">
<span class="carousel-control-prev-icon bg-dark" aria-hidden="true"></span>
</a>
<a class="carousel-control-next" href="#carouselExampleIndicators14" role="button" data-slide="next">
<span class="carousel-control-next-icon bg-dark" aria-hidden="true"></span>
</a>
</div>
</div>
</div>
</div>
</div>
</div> -->
<!-- ============================================================================================== -->
<div class="container mt-5 mb-5" id="blog__">
<div class="row">
<div class="col-lg-4" style="max-height: 415px;overflow-y: scroll;overflow-x: hidden;">
<div class=""><h2 class="text-center " data-aos="fade-right" data-aos-duration="500">Top Articles</h2></div>
<div class="text-left ">
<ul id="bestof">
<!-- fetch here -->
</ul>
</div>
</div>
<div class="col-lg-8" id="posts">
<a href="all-posts-en.html"><h2 id="__allposts" class="text-center" data-aos="fade-up"> Blog</h2></a>
<img src="images/loading.gif" class="col-md-8" id="loading" width="450" height="400"
style="margin-left: 7rem; margin-top: -2rem; margin-bottom: -10rem;">
<div class="text-right mt-1">
<div class="row">
<div class="col-lg-10"><h4 data-aos="fade-up" style="direction: ltr"><a href="" class="linkpost1__F"></a></h4>
<p data-aos="fade-up" id="paragpost1"></p>
</div>
<div class="col-lg-2" data-aos="fade-up"><a href="" class="linkpost1"><img style="width: 100%" src="" id="imgpost1"></a></div>
</div>
</div>
<hr class="hr__posts">
<div class="text-right mt-1">
<div class="row">
<div class="col-lg-10"><h4 data-aos="fade-up" style="direction: ltr"><a href="" class="linkpost2__F"></a></h4>
<p data-aos="fade-up" id="paragpost2"></p>
</div>
<div class="col-lg-2" data-aos="fade-up"><a href="" class="linkpost2"><img style="width: 100%" src="" id="imgpost2"></a></div>
</div>
</div>
<hr class="hr__posts">
<div class="text-right mt-1">
<div class="row">
<div class="col-lg-10"><h4 data-aos="fade-up" style="direction: ltr"><a href="" class="linkpost3__F"></a></h4>
<p data-aos="fade-up" id="paragpost3"></p>
</div>
<div class="col-lg-2" data-aos="fade-up"><a href="" class="linkpost3"><img style="width: 100%" src="" id="imgpost3"></a></div>
</div>
</div>
<hr class="hr__posts">
<div class="text-right mt-1" id="post4">
<div class="row">
<div class="col-lg-10"><h4 data-aos="fade-up" style="direction: ltr"><a href="" class=linkpost4__F></a></h4>
<p data-aos="fade-up" id="paragpost4"></p>
</div>
<div class="col-lg-2" data-aos="fade-up"><a href="" class="linkpost4"><img style="width: 100%" src="" id="imgpost4"></a></div>
</div>
</div>
<hr class="hr__posts">
<div class="text-right" data-aos="fade-up" data-aos-duration="500" id="cont__btn" style="display: none;">
<a class="btn btn-outline-warning" href="https://cdsapply.com/all-posts-en.html"><span id="cont__btn__text">Continue </span></a>
</div>
<style>
#cont__btn{
margin-top: 20px;
}
#cont__btn__text {
transition: 0.5s;
}
#cont__btn__text:after {
content: '\00bb';
/*position: absolute;*/
opacity: 0;
top: 0;
/*right: -20px;*/
transition: 0.1s;
}
#cont__btn:hover span {
padding-right: 10px;
}
#cont__btn:hover #cont__btn__text:after {
opacity: 1;
right: 0;
}
</style>
</div>
</div>
</div>
<div class="reservations text-center" id="contactus" style="
background-image: url(images/Contact-Us.jpg);
background-position: center center;
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;">
<div class="container">
<div class="row">
<div class="col">
<div class="reservations_content d-flex flex-column align-items-center justify-content-center">
<div class="res_stars page_subtitle">CDS Apply</div>
<div class="res_title hov">Stay in Touch with Us</div>
<div class="row mt-5 " >
<div class="col-4 mp" >
<div class="text-left text-white mt-3" style="font-size: 24px;direction: rtl;font-weight: bold" dir="ltr">
Our Social Networks
</div>
<div class="mt-2" style="margin-right: 75px;">
<a href="https://instagram.com/cdsapply"><img src="images/instagram.png"></a>
<a href="https://t.me/cdsapply"><img src="images/telegram.png"></a>
<a href="https://www.linkedin.com/company/cdsapply"><img src="images/in.png"></a>
</div>
</div>
<div class="col-4 text-left home_text">
<p class="hov" style="margin-bottom: -0.1%" dir="ltr"><strong>Address:</strong></p>
<p class="hov" style="margin-bottom: -0.1%" dir="ltr">Unit 19, 1st floor, Brelian Complex, Imam Sq., Sary, Mazandaran, Iran</p>