style.css
1.76 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
.quotes{
background-color:#D6EAF9;
padding: 30px 50px;
}
@media (max-width: 768px){
.quotes{
padding: 20px 20%;
margin: -5%;
}
}
.quotes .slides{
list-style: none;
margin-block-start: 0em;
margin-block-end: 0em;
margin-inline-start: 0px;
margin-inline-end: 0px;
padding-inline-start: 0px;
}
.container.quote{
width: 100%;
}
.container.quote .row {
margin-right: -15px !important;
margin-left: -15px !important;
}
.container.quote p{
font-size: 16px !important;
line-height:21px !important;
font-style: italic;
}
.quotes h3{
font-size: 25px !important;
line-height:25px !important;
text-align:left;
margin-left: 3% !important;
}
@media (max-width: 768px){
.quotes h3{
text-align:center;
margin-bottom: -20px;
margin-left: 0% !important;
}
}
.quote_image{
width: 100%;
}
.no-padding{
padding-top: 0rem;
padding-bottom: 0rem;
}
.slick-next{
right: -25px;
z-index: 9999;
top: 30%;
}
.slick-prev {
left: -30px;
z-index: 9999;
top: 30%;
}
@media (max-width: 768px){
.slick-next{
right: -55px;
z-index: 9999;
top: 30%;
}
.slick-prev {
left: -55px;
z-index: 9999;
top: 30%;
}
}
.slick-next:before{
content: " ";
background-image: url(next-arrow.png);
background-size: contain;
width: 50px !important;
height: 50px !important;
display: block;
background-repeat: no-repeat;
}
.slick-prev:before{
content: " ";
background-image: url(previous-arrow.png);
background-size: contain;
width: 50px !important;
height: 50px !important;
display: block;
background-repeat: no-repeat;
}