-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-About-us.html
355 lines (323 loc) · 11 KB
/
index-About-us.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
<!doctype html>
<html lang="en">
<head>
<title>Title</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="style.css">
<script src="https://kit.fontawesome.com/332a215f17.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css2?family=Amaranth:wght@400;700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/332a215f17.js" crossorigin="anonymous"></script>
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<style>
*{
margin:0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
body{
font-family: 'Open Sans', sans-serif;
}
.logo{
color: #04a5f0;
}
/* nav links */
.navbar-toggler {
outline: none !important;
}
.toggler-icon {
font-size: 40px;
color: #04a5f0;
}
.nav-link {
color: #04a5f0;
transition: all 1s ease-in-out;
font-size: 24px;
}
.nav-link:hover {
color: #000;
}
.app{
color: #4FCE5D;
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
width: 100%;
height: 60vh;
background:linear-gradient(rgba(6, 189, 189, 0.5), rgba(6, 188, 201, 0.5)), url("./images/About_dr_img.jpg") center center;
background-size: cover;
position: relative;
z-index: 1;
padding: 0;
/* margin-bottom: -120px; */
margin:0 auto -120px auto;
}
#hero:before {
content: "";
background: rgba(0, 0, 0, 0.4);
position: absolute;
bottom: 0;
top: 0;
left: 0;
right: 0;
}
#hero .container {
z-index: 2;
}
#hero h1 {
margin: 0 0 10px 0;
font-size: 48px;
font-weight: 700;
line-height: 56px;
color: #fff;
}
#hero .btn-start {
text-transform: uppercase;
font-weight: 500;
font-size: 14px;
letter-spacing: 1px;
display: inline-block;
padding: 10px 28px;
transition: 0.5s;
margin-top: 10px;
border: 2px solid #fff;
color: #fff;
}
#hero .btn-start:hover {
background: rgba(6, 189, 189, 0.5);
border: 2px solid rgba(6, 189, 189, 0.5);
text-decoration: none;
}
/*--------------------------------------------------------------
# Skills
--------------------------------------------------------------*/
.skills {
padding: 0 0 30px 0;
position: relative;
z-index: 3;
}
.skills .icon-boxes .icon-box {
text-align: center;
align-items: center;
border-radius: 10px;
background:rgb(8, 169, 190);
padding: 50px 30px;
width: 100%;
}
.skills .icon-boxes .icon-box i {
font-size: 40px;
color: #fff;
margin-bottom: 30px;
}
.skills .icon-boxes .icon-box h4 {
font-size: 20px;
font-weight: 700;
margin: 0 0px 30px 0;
}
.skills .icon-boxes .icon-box p {
font-size: 15px;
color: #fff;
}
.img-fluid{
width:430px;
height:500px;
}
/*End of Skill section*/
/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about h3 {
font-weight: bold;
font-size: 34px;
color: #000;
}
.about h4 {
font-size: 20px;
font-weight: bold;
margin-top: 5px;
}
.about i {
font-size: 48px;
margin-top: 15px;
color: #04a5f0;
}
.about p {
font-size: 15px;
color: #000;
}
/*Service Section*/
.bg-linear{
background:linear-gradient(rgba(6, 189, 189, 0.5), rgba(6, 188, 201, 0.5));
}
.service {
padding: 30px;
background: #fff;
box-shadow: 0 1px 2px 0px rgba(1, 17, 53, 0.8);
transition: .3s all ease-in-out;
top: 0;
position: relative; }
.service:hover {
box-shadow: 0 8px 50px -5px rgba(1,17,53,0.8);
top: -2px; }
.service .service-number {
flex: 0 0 60px; }
.service .service-about *:last-child {
margin-bottom: 0; }
.service .service-about h3 {
font-size: 1.2rem;
margin-bottom: 10px; }
.service .fab{
color: #04a5f0;
}
.service .fab:hover{
color: #f004a9;
}
</style>
</head>
<body>
<!-- ======= Hero Section ======= -->
<section id="hero" class="d-flex flex-column justify-content-center align-items-center">
<div class="container">
<h1 class="text-uppercase" style="margin-left: 50px;color:#2eb9fa">About Us</h1>
<div class="d-flex align-items-center">
<!-- <a href="#" class="btn-start">Get Started</a> -->
<h4 style="color: aliceblue;">Connect Securely Anytime,Anywhere<br> With 24*7 Doctors Available Just For You.</h4>
</div>
</div>
</section>
<!-- End Hero -->
<!-- ======= Skill ======= -->
<section id="skills" class="skills">
<div class="container">
<div class="row">
<div class="col-xl-4 col-lg-5">
</div>
<div class="col-xl-8 col-lg-7 d-flex">
<div class="icon-boxes d-flex flex-column justify-content-center">
<div class="row">
<div class="col-xl-4 d-flex align-items-center box">
<div class="icon-box mt-4 mt-xl-0">
<i class="fab fa-fly"></i>
<h4>Start A Session</h4>
<p>Select the type of category you would like to consult with the doctor.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-center ">
<div class="icon-box mt-4 mt-xl-0">
<i class="fas fa-leaf"></i>
<h4>Tell Us What's troubling You</h4>
<p>Type in your concern.Help Doctor Understand your Case Better.</p>
</div>
</div>
<div class="col-xl-4 d-flex align-items-center ">
<div class="icon-box mt-4 mt-xl-0">
<i class="fas fa-virus"></i>
<h4>Connect With Doctor.</h4>
<p>Choose The Specialist You Want To Get Treatment From.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Skills Section -->
<!-- ======= About Section ======= -->
<section id="about" class="about m-5">
<div class="container">
<div class="row">
<div class="col-lg-6">
<img src="images/About1.jpg" class="img-fluid" alt="">
</div>
<div class="col-lg-6 pt-4 pt-lg-0">
<h3 class="font-weight-bold">About Us </h3>
<p>Access video consultation with top doctors. Connect with doctors online, available 24/7, from the comfort of your home.</p>
<div class="row">
<div class="col-md-6">
<i class="fas fa-hospital-user"></i>
<br>
<br>
<h4>Take Advice From Best Doctors.</h4>
<p>Don't Self Meditate. Talk to an expert. Consult a doctor in less than 2 minutes. </p>
</div>
<div class="col-md-6">
<i class="fas fa-pills"></i>
<br>
<br>
<h4>Place Order Via Prescription.</h4>
<p>Tired of waiting in a queue? Too weak to go down and buy medicines? Order from here!!</p>
</div>
</div>
</div>
</div>
</div>
</section><!-- End About Section -->
<!--Service Section-->
<section>
<div class=" bg-linear" id="services-section">
<div class="container">
<div class="row ">
<div class="col-12 mb-5 position-relative">
<h2 class="section-title text-center mt-5">Services</h2>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<i class="fab fa-affiliatetheme fa-2x"></i></div>
<div class="service-about">
<h3>Consult Top Doctors 24x7</h3>
<p>
Connect instantly with a 24x7 specialist or choose to video visit a particular doctor.</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<i class="fab fa-adobe fa-2x"></i></div>
<div class="service-about">
<h3>Consult With Doctors</h3>
<p>Connect instantly with a 24x7 specialist or choose to video visit a particular doctor.</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<i class="fab fa-airbnb fa-2x"></i></div>
<div class="service-about">
<h3>Convenient and Easy</h3>
<p>
Start an instant consultation within 2 minutes or do video consultation at the scheduled time.</p>
</div>
</div>
</div>
<div class="col-md-6 mb-4">
<div class="service d-flex h-100">
<div class="service-number mr-4">
<i class="fab fa-amazon fa-2x"></i></div>
<div class="service-about">
<h3>Similar Clinic Experience</h3>
<p>
Experience clinic-like consultation through a video call with the doctor. Video consultation is available.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!--End of Service Section-->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
</body>
</html>