-
Notifications
You must be signed in to change notification settings - Fork 0
/
refund.html
427 lines (362 loc) · 12.8 KB
/
refund.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
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms and Service</title>
<link rel="stylesheet" href="./index.css">
<!-- Favicons -->
<link href="assets/img/favicon.ico" rel="icon">
<link href="assets/img/apple-touch-icon.png" rel="apple-touch-icon">
<!-- Google Fonts -->
<link
href="https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Jost:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i"
rel="stylesheet">
<!-- Vendor CSS Files -->
<link href="assets/vendor/aos/aos.css" rel="stylesheet">
<link href="assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
<link href="assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
<link href="assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
<link href="assets/vendor/remixicon/remixicon.css" rel="stylesheet">
<link href="assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
<!-- Template Main CSS File -->
<link href="assets/css/style.css" rel="stylesheet">
<link href="assets/fontawesome-free-6.2.0-web/css/fontawesome.css" rel="stylesheet">
<link href="assets/fontawesome-free-6.2.0-web/css/brands.css" rel="stylesheet">
<link href="assets/fontawesome-free-6.2.0-web/css/solid.css" rel="stylesheet">
<!-- manually added -->
<link href="assets/css/service.css" rel="stylesheet">
</head>
<body>
<header id="header" class="fixed-top d-flex align-items-center">
<div class="container d-flex align-items-center">
<h1 class="logo me-auto"><a href="index.html"><img src="assets/img/logo11.png" /></a></h1>
<!-- Uncomment below if you prefer to use an image logo -->
<!-- <a href="index.html" class="logo me-auto"><img src="assets/img/logo.png" alt=""></a>-->
<nav id="navbar" class="navbar order-last order-lg-0">
<ul>
<li><a class="nav-link scrollto active" href="index.html">Home</a></li>
<li><a class="nav-link scrollto" href="fees.html">Notary Fees</a></li>
<li><a class="nav-link scrollto" href="service.html">My Services</a></li>
<li><a class="nav-link scrollto" href="#testimonials">Testimonials</a></li>
<li><a class="nav-link scrollto" href="associates.html">Associates</a></li>
<li><a class="nav-link scrollto" href="about.html">About</a></li>
<!-- <li><a class="nav-link scrollto " href="#portfolio">Portfolio</a></li> -->
<!-- <li><a class="nav-link scrollto" href="#team">Team</a></li> -->
<!-- <li><a href="blog.html">Blog</a></li> -->
<!-- <li class="dropdown"><a href="#"><span>Drop Down</span> <i class="bi bi-chevron-down"></i></a>
<ul>
<li><a href="#">Drop Down 1</a></li>
<li class="dropdown"><a href="#"><span>Deep Drop Down</span> <i class="bi bi-chevron-right"></i></a>
<ul>
<li><a href="#">Deep Drop Down 1</a></li>
<li><a href="#">Deep Drop Down 2</a></li>
<li><a href="#">Deep Drop Down 3</a></li>
<li><a href="#">Deep Drop Down 4</a></li>
<li><a href="#">Deep Drop Down 5</a></li>
</ul>
</li>
<li><a href="#">Drop Down 2</a></li>
<li><a href="#">Drop Down 3</a></li>
<li><a href="#">Drop Down 4</a></li>
</ul>
</li> -->
<li><a class="nav-link scrollto" href="contact.html">Contact Me</a></li>
</ul>
<i class="bi bi-list mobile-nav-toggle"></i>
</nav><!-- .navbar -->
<a href="https://prosigningsbell.thenotary.app/" class="get-started-btn scrollto">Schedule</a>
</div>
</header><!-- End Header -->
<section id="terms-of-service">
<div class="card">
<h1 class="primary-heading">Refund Policy</h1>
<p class="paragraph">
Refund Will be processed only if the below conditions are met
<br><br><br>
1)Refund will be Processed if the Notary did not check the document or missed a stamp on the document.
<br><br><br>
2) If the service was not received
<br><br><br>
</p>
</div>
</section>
<footer id="footer">
<div class="footer-top">
<div class="container">
<div class="row">
<div class="col-lg-3 col-md-6 footer-contact">
<h1 class="logo me-auto" style="margin-left: -20px;"><a href="index.html"><img src="assets/img/logo11.png" /></a></h1>
<p class="addd">
Florida and Texas<br><br>
<strong>Phone :</strong> Florida - (813) 577 - 0611 <br>
     Texas - (682) 209 - 5949 <br>
<strong>Email:</strong> [email protected]<br>
</p>
</div>
<div class="col-lg-2 col-md-6 footer-links">
<h4>Useful Links</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="index.html">Home</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="about.html">About us</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="service.html">Services</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="terms.html">Terms of service</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="privacy.html">Privacy policy</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="refund.html">Refund policy</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6 footer-links">
<h4>Our Services</h4>
<ul>
<li><i class="bx bx-chevron-right"></i> <a href="#">Deed Only</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Seller/Buyer Closing Financed</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Seller/Buyer Closing Cash</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Reverse Mortages</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Refinance</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Heloc</a></li>
<li><i class="bx bx-chevron-right"></i> <a href="#">Extra Large Package</a></li>
</ul>
</div>
<!-- <div class="col-lg-4 col-md-6 footer-newsletter">
<h4>Join Our Newsletter</h4>
<p>Tamen quem nulla quae legam multos aute sint culpa legam noster magna</p>
<form action="" method="post">
<input type="email" name="email"><input type="submit" value="Subscribe">
</form>
</div> -->
</div>
</div>
</div>
<div class="container d-md-flex py-4">
<div class="me-md-auto text-center text-md-start">
<div class="copyright">
© Copyright <strong><span>ProSignings</span></strong>. All Rights Reserved
</div>
<div class="credits">
<!-- All the links in the footer should remain intact. -->
<!-- You can delete the links only if you purchased the pro version. -->
<!-- Licensing information: https://bootstrapmade.com/license/ -->
<!-- Purchase the pro version with working PHP/AJAX contact form: https://bootstrapmade.com/ProSignings-bootstrap-corporate-template/ -->
Designed by Prosignings
</div>
</div>
<div class="social-links text-center text-md-end pt-3 pt-md-0">
<a href="#" class="twitter"><i class="bx bxl-twitter"></i></a>
<a href="#" class="facebook"><i class="bx bxl-facebook"></i></a>
<a href="#" class="instagram"><i class="bx bxl-instagram"></i></a>
<a href="#" class="google-plus"><i class="bx bxl-skype"></i></a>
<a href="#" class="linkedin"><i class="bx bxl-linkedin"></i></a>
</div>
</div>
</footer>
</body>
<style>
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500;700&display=swap');
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #000000;
}
::-webkit-scrollbar-thumb {
background: #000000;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body,html {
width: 100%;
min-height: 100%;
background-color: #000000;
}
.main-header {
width: 100%;
height: 75px;
background-color: #1a1a1a;
display: block;
}
.main-header ul.header-options {
width: 100%;
height: 100%;
list-style: none;
display: flex;
align-items: center;
justify-content: space-around;
padding-right: 100px;
}
.main-header ul.header-options li {
display: inline-block;
}
.main-header ul.header-options li.title {
font-size: 18px;
color: #fff;
font-family: 'Lato', sans-serif;
cursor: pointer;
}
.header-mobile {
width: 100%;
height: 75px;
background-color: #181A24;
text-align: center;
display: none;
}
.title-mobile {
font-size: 18px;
color: #fff;
font-family: 'Lato', sans-serif;
cursor: pointer;
padding-top: 30px;
}
a {
text-decoration: none;
font-size: 16px;
color: #6D6F79;
font-family: 'Lato', sans-serif;
cursor: pointer;
}
a:hover {
font-size: 16px;
color: #9598a7;
}
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 1200px;
border-radius: 30px;
background-color: #333541;
margin-left: auto;
margin-right: auto;
}
.card .primary-heading {
text-align: center;
font-family: 'Lato', sans-serif;
color: white;
padding-top: 50px ;
font-size: 4em;
}
.paragraph {
font-family: 'Lato', sans-serif;
color: rgb(179, 179, 179);
margin-left: 50px;
margin-right: 25px;
padding-top: 50px;
font-size: 1.5em;
line-height: 1.3em;
font-weight: 500;
}
.bold {
font-weight: 700;
color: white;
}
.footer-heading {
text-align: center;
font-family: 'Lato', sans-serif;
color: white;
margin-bottom: 50px;
font-size: 2em;
line-height: 35px;
}
@media only screen and (max-width: 1218px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 1000px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
}
@media only screen and (max-width: 1012px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 800px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
}
@media only screen and (max-width: 832px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 600px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
.card .primary-heading {
font-size: 3.5em;
}
.footer-heading {
font-size: 1.5em;
}
}
@media only screen and (max-width: 626px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 450px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
.header-mobile {
display: block;
}
.main-header {
display: none;
}
.card .primary-heading {
font-size: 3em;
}
}
@media only screen and (max-width: 480px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 350px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
.card .primary-heading {
font-size: 2em;
}
}
@media only screen and (max-width: 365px) {
.card {
margin-top: 100px;
margin-bottom: 100px;
width: 290px;
border-radius: 30px;
background-color: #1a1a1a;
margin-left: auto;
margin-right: auto;
}
.card .primary-heading {
font-size: 2em;
}
}
@media screen and (max-width: 414px){
.row {
display: flex;
justify-content: center;
}
.addd{
text-align: center;
} .row>*{
width: 60%;
}
}
</style>
</html>