-
Notifications
You must be signed in to change notification settings - Fork 0
/
testimonial.css
89 lines (76 loc) · 1.54 KB
/
testimonial.css
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
/* Testimonial Section Styles */
.testimonial-section {
background-color: #f9f9f9;
padding: 60px 0;
}
.testimonial-section .section-title {
text-align: center;
font-size: 36px;
margin-bottom: 40px;
color: #333;
}
.testimonial-section .swiper {
padding: 40px 0;
}
.testimonial-card {
background-color: #fff;
border-radius: 8px;
padding: 30px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.client-photo {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin: 0 auto 20px;
border: 4px solid #e0e0e0;
}
.testimonial-text {
font-size: 18px;
color: #555;
margin-bottom: 20px;
line-height: 1.6;
font-style: italic;
}
.client-name {
font-size: 20px;
color: #333;
margin-bottom: 5px;
font-weight: bold;
}
.client-position {
font-size: 16px;
color: #777;
}
/* Swiper Navigation Buttons */
.swiper-button-prev,
.swiper-button-next {
color: #333;
}
.swiper-pagination-bullet-active {
background-color: #333;
}
/* Responsive Styles */
@media (max-width: 768px) {
.testimonial-section .section-title {
font-size: 28px;
}
.testimonial-text {
font-size: 16px;
}
.client-name {
font-size: 18px;
}
.client-position {
font-size: 14px;
}
}
.star-rating {
margin: 10px 0;
color: #ffc107; /* Gold color for the stars */
}
.star-rating .fa-star {
margin-right: 5px;
}