File tree Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Expand file tree Collapse file tree 2 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
1
+ .cta-button {
2
+ display : inline - block ;
3
+ text - decoration : none ;
4
+ background - color : var (--primary);
5
+ color : var (--text-primary);
6
+ padding : 12px 24px ;
7
+ border - radius : 4px ;
8
+ font - family : " Poppins" ;
9
+ font - size : 16px ;
10
+ font - weight : 500 ;
11
+ border : 1px solid var (--border-separator);
12
+ cursor : pointer ;
13
+ transition : background - color 0.2s ease ;
14
+
15
+ & :hover {
16
+ background - color : var (--primary-hover);
17
+ }
18
+ }
Original file line number Diff line number Diff line change @@ -121,6 +121,15 @@ const tags = [
121
121
</div >
122
122
</div >
123
123
124
+ <div class =" nonprofit-wrapper" >
125
+ <div id =" nonprofit-section" >
126
+ <p >Request a license for your non-profit organisation.</p >
127
+ <button type =" submit" class =" btn size-normal" onclick =" window .location .href = ' mailto:sales@defguard.net' " >
128
+ <span >Contact Sales</span >
129
+ </button >
130
+ </div >
131
+ </div >
132
+
124
133
<style lang =" scss" is:global >
125
134
#pricing-container {
126
135
padding-bottom: 40px;
@@ -335,6 +344,29 @@ const tags = [
335
344
box-sizing: border-box;
336
345
}
337
346
}
347
+
348
+ .nonprofit-wrapper {
349
+ width: 100%;
350
+ background-color: var(--surface-frame-bg);
351
+ padding: 120px 0;
352
+ }
353
+
354
+ #nonprofit-section {
355
+ width: 100%;
356
+ max-width: 1100px;
357
+ margin: 0 auto;
358
+ text-align: center;
359
+ padding: 0 20px;
360
+ box-sizing: border-box;
361
+ display: flex;
362
+ flex-direction: column;
363
+ align-items: center;
364
+
365
+ p {
366
+ @include typography(pricebox-section);
367
+ margin-bottom: 30px;
368
+ }
369
+ }
338
370
</style >
339
371
</main >
340
372
</BaseLayout >
You can’t perform that action at this time.
0 commit comments