blob: 4f8186d827a438f94436ce07b1ac110dbbd8d637 (
plain)
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
|
.section_title{
h3{
font-size: 50px;
font-weight: 400;
line-height: 51px;
color: $theme-color2;
font-family: $font1;
margin-bottom: 21px;
@media #{$mobile_device} {
font-size: 27px;
line-height: 33px;
}
@media #{$tablet_device} {
font-size: 32px;
line-height: 40px;
}
@media #{$mid_device} {
font-size: 33px;
line-height: 40px;
}
br{
@media #{$mobile_device} {
display: none;
}
}
}
p{
font-size: 16px;
line-height: 32px;
color: #7f7f7f;
font-weight: 400;
}
}
.mb-100{
margin-bottom: 100px;
@media #{$mobile_device} {
margin-bottom: 40px;
}
}
.section_title2{
i{
font-size: 45px;
color: #BC9321;
display: block;
}
h3{
font-size: 42px;
font-weight: 400;
line-height: 52px;
color: $theme-color4;
position: relative;
padding-bottom: 30px;
margin-top: 10px;
&::before{
position: absolute;
content: "";
width: 80px;
height: 1px;
background: #BC9321;
bottom: 0;
left: 50%;
margin-left: -40px;
}
@media #{$mobile_device} {
font-size: 30px;
line-height: 36px;
}
@media #{$tablet_device} {
font-size: 36px;
line-height: 42px;
}
br{
@media #{$mobile_device} {
display: none;
}
}
}
}
.section_title3 h3 {
font-size: 60px;
color: #FFFFFF;
font-weight: 900;
text-transform: capitalize;
@media #{$mobile_device}{
font-size: 30px;
}
@media #{$tablet_device}{
font-size: 35px;
}
}
.section_title3.padding_plus{
padding-top: 115px;
padding-bottom: 50px;
@media #{$mobile_device} {
padding-top: 60px;
padding-bottom: 30px;
}
@media #{$tablet_device} {
padding-top: 80px;
padding-bottom: 40px;
}
}
.mb-55{
margin-bottom: 53px;
@media #{$mobile_device} {
margin-bottom: 30px;
}
@media #{$tablet_device} {
margin-bottom: 40px;
}
}
.mb-40{
margin-bottom: 40px;
@media #{$mobile_device} {
margin-bottom: 30px;
}
}
.pl-68{
padding-left: 68px;
@media #{$mobile_device} {
padding-left: 0;
}
@media #{$tablet_device} {
padding-left: 0;
}
@media #{$mid_device} {
padding-left: 0;
}
}
|