-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
200 lines (184 loc) · 3.43 KB
/
style.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
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
body,h1,h2,h3,h4,h5,h6{
font-family: 'Work Sans', sans-serif;
}
img{
max-width: 100%;
}
/* Header Style */
.jon-header .navbar-brand {
font-size: 22px;
font-weight: 500;
}
.jon-header span {
display: inline-block;
background: #5369d1;
color: #fff;
height: 37px;
width: 42px;
text-align: center;
border-radius: 6px;
font-size: 26px;
position: relative;
top: 2px;
}
.jon-menu .nav-link {
padding-left: 13px !important;
padding-right: 13px !important;
}
/* Slider Section */
.slider-section{
background: url(https://i.ibb.co/r0JphkC/mbr-10.jpg) no-repeat center center;
padding: 176px 0;
position: relative;
z-index: 1;
}
.slider-section::after{
content: "";
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
background: rgba(0, 0, 0, 0.51);
z-index: -1;
}
.slider-caption h4 {
margin-bottom: 35px;
}
.slider-caption h2 {
margin-bottom: 29px;
font-size: 42px;
}
.slider-caption .btn {
background: #5ba533;
padding: 9px 18px;
font-size: 28px;
font-weight: 600;
}
.slider-caption .form-control {
padding: 14px 18px;
}
/* Abput Section */
.about-section{
background: #ebf5ff;
}
.about-text-left{
margin-top: 118px;
}
.about-text-left .lead {
font-size: 22px;
line-height: 2.5rem;
}
/* Feature Section css */
.feature-item {
height: 300px;
box-shadow: 2.5px 4.33px 30px 0 rgba(64,87,191,0.1);
}
.left-img-sec {
width: 53%;
overflow: hidden;
border-radius: 5px 0 0 5px;
}
.left-test-sec {
width: 48%;
padding: 14px;
}
.left-img-sec img {
height: 100%;
width: auto !important;
max-width: inherit;
position: relative;
left: -110px;
}
/* Portolio Hover Css */
.portfolio-item{}
.portfolio-item a{
position: relative;
display: block;
}
.portfolio-item a::after{
content: "";
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
background-color: rgba(98, 120, 223,.7);
opacity: 0;
visibility: hidden;
transition: .4s;
}
.portfolio-item:hover a::after{
opacity: 1;
visibility: visible;
}
.min-section-bg{
background-color: #f7f9ff;
}
/* Pricing table */
.pricing-item{
background-color: #fff;
padding: 51px;
box-shadow: 2.5px 4.33px 30px 0 rgba(64,87,191,0.1);
border-radius: 7px;
}
.pricing-item h1{}
.pricing-item h5{}
.pricing-item ul {
list-style: none;
margin-left: 0;
padding-left: 0;
margin-bottom: 45px;
}
.pricing-item ul li {
margin-top: 17px;
margin-bottom: 18px;
font-size: 20px;
color: #777;
}
.pricing-item ul li span {
color: #657be0;
font-size: 25px;
font-weight: bold;
width: 38px;
display: inline-block;
}
.pricing-item-button{}
.pricing-item-button a {
border-color: #657be0;
border-width: 1px;
color: #657be0;
padding: 12px 21px;
font-size: 22px;
box-shadow: 2.5px 4.33px 30px 0 rgba(64,87,191,0.2);
}
/* testimonial section */
.author-info {
width: 220px;
margin: auto;
}
.author-info img {
width: 79px;
margin-right: 11px;
}
.user-details {
text-align: left;
position: relative;
top: 10px;
}
/* About Section */
.about-item {
margin-top: 90px;
}
.about-item .card{}
.about-item .card img {
width: 124px;
height: auto;
margin-top: -58px;
margin-left: 24px;
}
/* Conent Us CSS */
.contnt-form-div .card{
box-shadow: 2.5px 4.33px 30px 0 rgba(64,87,191,0.2);
padding: 40px;
}