@oslokommune/punkt-css 17.1.2 → 17.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2970,7 +2970,7 @@ button.pkt-link {
2970
2970
  }
2971
2971
 
2972
2972
  /*
2973
- * CSS Grid layouts
2973
+ * CSS Grid
2974
2974
  */
2975
2975
  .pkt-grid {
2976
2976
  display: grid;
@@ -3184,6 +3184,15 @@ button.pkt-link {
3184
3184
  .pkt-grid--rowgap-size-88 {
3185
3185
  row-gap: 5.5rem;
3186
3186
  }
3187
+ .pkt-grid--gap-size-96 {
3188
+ gap: 6rem;
3189
+ }
3190
+ .pkt-grid--colgap-size-96 {
3191
+ column-gap: 6rem;
3192
+ }
3193
+ .pkt-grid--rowgap-size-96 {
3194
+ row-gap: 6rem;
3195
+ }
3187
3196
  .pkt-grid--gap-size-104 {
3188
3197
  gap: 6.5rem;
3189
3198
  }
@@ -3202,24 +3211,6 @@ button.pkt-link {
3202
3211
  .pkt-grid--rowgap-size-128 {
3203
3212
  row-gap: 8rem;
3204
3213
  }
3205
- .pkt-grid--gap-size-148 {
3206
- gap: 9.25rem;
3207
- }
3208
- .pkt-grid--colgap-size-148 {
3209
- column-gap: 9.25rem;
3210
- }
3211
- .pkt-grid--rowgap-size-148 {
3212
- row-gap: 9.25rem;
3213
- }
3214
- .pkt-grid--gap-size-5 {
3215
- gap: 0.3125rem;
3216
- }
3217
- .pkt-grid--colgap-size-5 {
3218
- column-gap: 0.3125rem;
3219
- }
3220
- .pkt-grid--rowgap-size-5 {
3221
- row-gap: 0.3125rem;
3222
- }
3223
3214
  .pkt-grid--gap-size-10 {
3224
3215
  gap: 0.625rem;
3225
3216
  }
@@ -3229,15 +3220,6 @@ button.pkt-link {
3229
3220
  .pkt-grid--rowgap-size-10 {
3230
3221
  row-gap: 0.625rem;
3231
3222
  }
3232
- .pkt-grid--gap-size-15 {
3233
- gap: 0.9375rem;
3234
- }
3235
- .pkt-grid--colgap-size-15 {
3236
- column-gap: 0.9375rem;
3237
- }
3238
- .pkt-grid--rowgap-size-15 {
3239
- row-gap: 0.9375rem;
3240
- }
3241
3223
  .pkt-grid--gap-size-20 {
3242
3224
  gap: 1.25rem;
3243
3225
  }
@@ -3256,15 +3238,6 @@ button.pkt-link {
3256
3238
  .pkt-grid--rowgap-size-30 {
3257
3239
  row-gap: 1.875rem;
3258
3240
  }
3259
- .pkt-grid--gap-size-50 {
3260
- gap: 3.125rem;
3261
- }
3262
- .pkt-grid--colgap-size-50 {
3263
- column-gap: 3.125rem;
3264
- }
3265
- .pkt-grid--rowgap-size-50 {
3266
- row-gap: 3.125rem;
3267
- }
3268
3241
  .pkt-grid--gap-size-60 {
3269
3242
  gap: 3.75rem;
3270
3243
  }
@@ -3274,6 +3247,33 @@ button.pkt-link {
3274
3247
  .pkt-grid--rowgap-size-60 {
3275
3248
  row-gap: 3.75rem;
3276
3249
  }
3250
+ .pkt-grid--gap-size-5 {
3251
+ gap: 0.3125rem;
3252
+ }
3253
+ .pkt-grid--colgap-size-5 {
3254
+ column-gap: 0.3125rem;
3255
+ }
3256
+ .pkt-grid--rowgap-size-5 {
3257
+ row-gap: 0.3125rem;
3258
+ }
3259
+ .pkt-grid--gap-size-15 {
3260
+ gap: 0.9375rem;
3261
+ }
3262
+ .pkt-grid--colgap-size-15 {
3263
+ column-gap: 0.9375rem;
3264
+ }
3265
+ .pkt-grid--rowgap-size-15 {
3266
+ row-gap: 0.9375rem;
3267
+ }
3268
+ .pkt-grid--gap-size-50 {
3269
+ gap: 3.125rem;
3270
+ }
3271
+ .pkt-grid--colgap-size-50 {
3272
+ column-gap: 3.125rem;
3273
+ }
3274
+ .pkt-grid--rowgap-size-50 {
3275
+ row-gap: 3.125rem;
3276
+ }
3277
3277
  .pkt-grid--gap-size-75 {
3278
3278
  gap: 4.6875rem;
3279
3279
  }
@@ -3292,6 +3292,61 @@ button.pkt-link {
3292
3292
  .pkt-grid--rowgap-size-100 {
3293
3293
  row-gap: 6.25rem;
3294
3294
  }
3295
+ .pkt-grid > .pkt-cell--left, .pkt-grid > * > .pkt-cell--left {
3296
+ justify-self: start;
3297
+ }
3298
+ .pkt-grid > .pkt-cell--center, .pkt-grid > * > .pkt-cell--center {
3299
+ justify-self: center;
3300
+ }
3301
+ .pkt-grid > .pkt-cell--right, .pkt-grid > * > .pkt-cell--right {
3302
+ justify-self: end;
3303
+ }
3304
+ .pkt-grid > .pkt-cell--top, .pkt-grid > * > .pkt-cell--top {
3305
+ align-self: self-start;
3306
+ }
3307
+ .pkt-grid > .pkt-cell--center-vertical, .pkt-grid > * > .pkt-cell--center-vertical {
3308
+ align-self: center;
3309
+ }
3310
+ .pkt-grid > .pkt-cell--bottom, .pkt-grid > * > .pkt-cell--bottom {
3311
+ align-self: self-end;
3312
+ }
3313
+ .pkt-grid > .pkt-cell.pkt-cell--span2, .pkt-grid > * > .pkt-cell.pkt-cell--span2 {
3314
+ grid-column-end: span 2;
3315
+ }
3316
+ .pkt-grid > .pkt-cell.pkt-cell--span3, .pkt-grid > * > .pkt-cell.pkt-cell--span3 {
3317
+ grid-column-end: span 3;
3318
+ }
3319
+ .pkt-grid > .pkt-cell.pkt-cell--span4, .pkt-grid > * > .pkt-cell.pkt-cell--span4 {
3320
+ grid-column-end: span 4;
3321
+ }
3322
+ .pkt-grid > .pkt-cell.pkt-cell--span5, .pkt-grid > * > .pkt-cell.pkt-cell--span5 {
3323
+ grid-column-end: span 5;
3324
+ }
3325
+ .pkt-grid > .pkt-cell.pkt-cell--span6, .pkt-grid > * > .pkt-cell.pkt-cell--span6 {
3326
+ grid-column-end: span 6;
3327
+ }
3328
+ .pkt-grid > .pkt-cell.pkt-cell--span7, .pkt-grid > * > .pkt-cell.pkt-cell--span7 {
3329
+ grid-column-end: span 7;
3330
+ }
3331
+ .pkt-grid > .pkt-cell.pkt-cell--span8, .pkt-grid > * > .pkt-cell.pkt-cell--span8 {
3332
+ grid-column-end: span 8;
3333
+ }
3334
+ .pkt-grid > .pkt-cell.pkt-cell--span9, .pkt-grid > * > .pkt-cell.pkt-cell--span9 {
3335
+ grid-column-end: span 9;
3336
+ }
3337
+ .pkt-grid > .pkt-cell.pkt-cell--span10, .pkt-grid > * > .pkt-cell.pkt-cell--span10 {
3338
+ grid-column-end: span 10;
3339
+ }
3340
+ .pkt-grid > .pkt-cell.pkt-cell--span11, .pkt-grid > * > .pkt-cell.pkt-cell--span11 {
3341
+ grid-column-end: span 11;
3342
+ }
3343
+ .pkt-grid > .pkt-cell.pkt-cell--span12, .pkt-grid > * > .pkt-cell.pkt-cell--span12 {
3344
+ grid-column-end: span 12;
3345
+ }
3346
+
3347
+ /*
3348
+ * Responsiv grid
3349
+ */
3295
3350
  @media screen {
3296
3351
  .pkt-grid--gap-size-0-mobile-up {
3297
3352
  gap: 0rem;
@@ -3446,6 +3501,15 @@ button.pkt-link {
3446
3501
  .pkt-grid--rowgap-size-88-mobile-up {
3447
3502
  row-gap: 5.5rem;
3448
3503
  }
3504
+ .pkt-grid--gap-size-96-mobile-up {
3505
+ gap: 6rem;
3506
+ }
3507
+ .pkt-grid--colgap-size-96-mobile-up {
3508
+ column-gap: 6rem;
3509
+ }
3510
+ .pkt-grid--rowgap-size-96-mobile-up {
3511
+ row-gap: 6rem;
3512
+ }
3449
3513
  .pkt-grid--gap-size-104-mobile-up {
3450
3514
  gap: 6.5rem;
3451
3515
  }
@@ -3464,24 +3528,6 @@ button.pkt-link {
3464
3528
  .pkt-grid--rowgap-size-128-mobile-up {
3465
3529
  row-gap: 8rem;
3466
3530
  }
3467
- .pkt-grid--gap-size-148-mobile-up {
3468
- gap: 9.25rem;
3469
- }
3470
- .pkt-grid--colgap-size-148-mobile-up {
3471
- column-gap: 9.25rem;
3472
- }
3473
- .pkt-grid--rowgap-size-148-mobile-up {
3474
- row-gap: 9.25rem;
3475
- }
3476
- .pkt-grid--gap-size-5-mobile-up {
3477
- gap: 0.3125rem;
3478
- }
3479
- .pkt-grid--colgap-size-5-mobile-up {
3480
- column-gap: 0.3125rem;
3481
- }
3482
- .pkt-grid--rowgap-size-5-mobile-up {
3483
- row-gap: 0.3125rem;
3484
- }
3485
3531
  .pkt-grid--gap-size-10-mobile-up {
3486
3532
  gap: 0.625rem;
3487
3533
  }
@@ -3491,15 +3537,6 @@ button.pkt-link {
3491
3537
  .pkt-grid--rowgap-size-10-mobile-up {
3492
3538
  row-gap: 0.625rem;
3493
3539
  }
3494
- .pkt-grid--gap-size-15-mobile-up {
3495
- gap: 0.9375rem;
3496
- }
3497
- .pkt-grid--colgap-size-15-mobile-up {
3498
- column-gap: 0.9375rem;
3499
- }
3500
- .pkt-grid--rowgap-size-15-mobile-up {
3501
- row-gap: 0.9375rem;
3502
- }
3503
3540
  .pkt-grid--gap-size-20-mobile-up {
3504
3541
  gap: 1.25rem;
3505
3542
  }
@@ -3518,15 +3555,6 @@ button.pkt-link {
3518
3555
  .pkt-grid--rowgap-size-30-mobile-up {
3519
3556
  row-gap: 1.875rem;
3520
3557
  }
3521
- .pkt-grid--gap-size-50-mobile-up {
3522
- gap: 3.125rem;
3523
- }
3524
- .pkt-grid--colgap-size-50-mobile-up {
3525
- column-gap: 3.125rem;
3526
- }
3527
- .pkt-grid--rowgap-size-50-mobile-up {
3528
- row-gap: 3.125rem;
3529
- }
3530
3558
  .pkt-grid--gap-size-60-mobile-up {
3531
3559
  gap: 3.75rem;
3532
3560
  }
@@ -3536,6 +3564,33 @@ button.pkt-link {
3536
3564
  .pkt-grid--rowgap-size-60-mobile-up {
3537
3565
  row-gap: 3.75rem;
3538
3566
  }
3567
+ .pkt-grid--gap-size-5-mobile-up {
3568
+ gap: 0.3125rem;
3569
+ }
3570
+ .pkt-grid--colgap-size-5-mobile-up {
3571
+ column-gap: 0.3125rem;
3572
+ }
3573
+ .pkt-grid--rowgap-size-5-mobile-up {
3574
+ row-gap: 0.3125rem;
3575
+ }
3576
+ .pkt-grid--gap-size-15-mobile-up {
3577
+ gap: 0.9375rem;
3578
+ }
3579
+ .pkt-grid--colgap-size-15-mobile-up {
3580
+ column-gap: 0.9375rem;
3581
+ }
3582
+ .pkt-grid--rowgap-size-15-mobile-up {
3583
+ row-gap: 0.9375rem;
3584
+ }
3585
+ .pkt-grid--gap-size-50-mobile-up {
3586
+ gap: 3.125rem;
3587
+ }
3588
+ .pkt-grid--colgap-size-50-mobile-up {
3589
+ column-gap: 3.125rem;
3590
+ }
3591
+ .pkt-grid--rowgap-size-50-mobile-up {
3592
+ row-gap: 3.125rem;
3593
+ }
3539
3594
  .pkt-grid--gap-size-75-mobile-up {
3540
3595
  gap: 4.6875rem;
3541
3596
  }
@@ -3709,6 +3764,15 @@ button.pkt-link {
3709
3764
  .pkt-grid--rowgap-size-88-phablet-up {
3710
3765
  row-gap: 5.5rem;
3711
3766
  }
3767
+ .pkt-grid--gap-size-96-phablet-up {
3768
+ gap: 6rem;
3769
+ }
3770
+ .pkt-grid--colgap-size-96-phablet-up {
3771
+ column-gap: 6rem;
3772
+ }
3773
+ .pkt-grid--rowgap-size-96-phablet-up {
3774
+ row-gap: 6rem;
3775
+ }
3712
3776
  .pkt-grid--gap-size-104-phablet-up {
3713
3777
  gap: 6.5rem;
3714
3778
  }
@@ -3727,24 +3791,6 @@ button.pkt-link {
3727
3791
  .pkt-grid--rowgap-size-128-phablet-up {
3728
3792
  row-gap: 8rem;
3729
3793
  }
3730
- .pkt-grid--gap-size-148-phablet-up {
3731
- gap: 9.25rem;
3732
- }
3733
- .pkt-grid--colgap-size-148-phablet-up {
3734
- column-gap: 9.25rem;
3735
- }
3736
- .pkt-grid--rowgap-size-148-phablet-up {
3737
- row-gap: 9.25rem;
3738
- }
3739
- .pkt-grid--gap-size-5-phablet-up {
3740
- gap: 0.3125rem;
3741
- }
3742
- .pkt-grid--colgap-size-5-phablet-up {
3743
- column-gap: 0.3125rem;
3744
- }
3745
- .pkt-grid--rowgap-size-5-phablet-up {
3746
- row-gap: 0.3125rem;
3747
- }
3748
3794
  .pkt-grid--gap-size-10-phablet-up {
3749
3795
  gap: 0.625rem;
3750
3796
  }
@@ -3754,15 +3800,6 @@ button.pkt-link {
3754
3800
  .pkt-grid--rowgap-size-10-phablet-up {
3755
3801
  row-gap: 0.625rem;
3756
3802
  }
3757
- .pkt-grid--gap-size-15-phablet-up {
3758
- gap: 0.9375rem;
3759
- }
3760
- .pkt-grid--colgap-size-15-phablet-up {
3761
- column-gap: 0.9375rem;
3762
- }
3763
- .pkt-grid--rowgap-size-15-phablet-up {
3764
- row-gap: 0.9375rem;
3765
- }
3766
3803
  .pkt-grid--gap-size-20-phablet-up {
3767
3804
  gap: 1.25rem;
3768
3805
  }
@@ -3781,15 +3818,6 @@ button.pkt-link {
3781
3818
  .pkt-grid--rowgap-size-30-phablet-up {
3782
3819
  row-gap: 1.875rem;
3783
3820
  }
3784
- .pkt-grid--gap-size-50-phablet-up {
3785
- gap: 3.125rem;
3786
- }
3787
- .pkt-grid--colgap-size-50-phablet-up {
3788
- column-gap: 3.125rem;
3789
- }
3790
- .pkt-grid--rowgap-size-50-phablet-up {
3791
- row-gap: 3.125rem;
3792
- }
3793
3821
  .pkt-grid--gap-size-60-phablet-up {
3794
3822
  gap: 3.75rem;
3795
3823
  }
@@ -3799,6 +3827,33 @@ button.pkt-link {
3799
3827
  .pkt-grid--rowgap-size-60-phablet-up {
3800
3828
  row-gap: 3.75rem;
3801
3829
  }
3830
+ .pkt-grid--gap-size-5-phablet-up {
3831
+ gap: 0.3125rem;
3832
+ }
3833
+ .pkt-grid--colgap-size-5-phablet-up {
3834
+ column-gap: 0.3125rem;
3835
+ }
3836
+ .pkt-grid--rowgap-size-5-phablet-up {
3837
+ row-gap: 0.3125rem;
3838
+ }
3839
+ .pkt-grid--gap-size-15-phablet-up {
3840
+ gap: 0.9375rem;
3841
+ }
3842
+ .pkt-grid--colgap-size-15-phablet-up {
3843
+ column-gap: 0.9375rem;
3844
+ }
3845
+ .pkt-grid--rowgap-size-15-phablet-up {
3846
+ row-gap: 0.9375rem;
3847
+ }
3848
+ .pkt-grid--gap-size-50-phablet-up {
3849
+ gap: 3.125rem;
3850
+ }
3851
+ .pkt-grid--colgap-size-50-phablet-up {
3852
+ column-gap: 3.125rem;
3853
+ }
3854
+ .pkt-grid--rowgap-size-50-phablet-up {
3855
+ row-gap: 3.125rem;
3856
+ }
3802
3857
  .pkt-grid--gap-size-75-phablet-up {
3803
3858
  gap: 4.6875rem;
3804
3859
  }
@@ -3972,6 +4027,15 @@ button.pkt-link {
3972
4027
  .pkt-grid--rowgap-size-88-tablet-up {
3973
4028
  row-gap: 5.5rem;
3974
4029
  }
4030
+ .pkt-grid--gap-size-96-tablet-up {
4031
+ gap: 6rem;
4032
+ }
4033
+ .pkt-grid--colgap-size-96-tablet-up {
4034
+ column-gap: 6rem;
4035
+ }
4036
+ .pkt-grid--rowgap-size-96-tablet-up {
4037
+ row-gap: 6rem;
4038
+ }
3975
4039
  .pkt-grid--gap-size-104-tablet-up {
3976
4040
  gap: 6.5rem;
3977
4041
  }
@@ -3990,24 +4054,6 @@ button.pkt-link {
3990
4054
  .pkt-grid--rowgap-size-128-tablet-up {
3991
4055
  row-gap: 8rem;
3992
4056
  }
3993
- .pkt-grid--gap-size-148-tablet-up {
3994
- gap: 9.25rem;
3995
- }
3996
- .pkt-grid--colgap-size-148-tablet-up {
3997
- column-gap: 9.25rem;
3998
- }
3999
- .pkt-grid--rowgap-size-148-tablet-up {
4000
- row-gap: 9.25rem;
4001
- }
4002
- .pkt-grid--gap-size-5-tablet-up {
4003
- gap: 0.3125rem;
4004
- }
4005
- .pkt-grid--colgap-size-5-tablet-up {
4006
- column-gap: 0.3125rem;
4007
- }
4008
- .pkt-grid--rowgap-size-5-tablet-up {
4009
- row-gap: 0.3125rem;
4010
- }
4011
4057
  .pkt-grid--gap-size-10-tablet-up {
4012
4058
  gap: 0.625rem;
4013
4059
  }
@@ -4017,17 +4063,8 @@ button.pkt-link {
4017
4063
  .pkt-grid--rowgap-size-10-tablet-up {
4018
4064
  row-gap: 0.625rem;
4019
4065
  }
4020
- .pkt-grid--gap-size-15-tablet-up {
4021
- gap: 0.9375rem;
4022
- }
4023
- .pkt-grid--colgap-size-15-tablet-up {
4024
- column-gap: 0.9375rem;
4025
- }
4026
- .pkt-grid--rowgap-size-15-tablet-up {
4027
- row-gap: 0.9375rem;
4028
- }
4029
- .pkt-grid--gap-size-20-tablet-up {
4030
- gap: 1.25rem;
4066
+ .pkt-grid--gap-size-20-tablet-up {
4067
+ gap: 1.25rem;
4031
4068
  }
4032
4069
  .pkt-grid--colgap-size-20-tablet-up {
4033
4070
  column-gap: 1.25rem;
@@ -4044,15 +4081,6 @@ button.pkt-link {
4044
4081
  .pkt-grid--rowgap-size-30-tablet-up {
4045
4082
  row-gap: 1.875rem;
4046
4083
  }
4047
- .pkt-grid--gap-size-50-tablet-up {
4048
- gap: 3.125rem;
4049
- }
4050
- .pkt-grid--colgap-size-50-tablet-up {
4051
- column-gap: 3.125rem;
4052
- }
4053
- .pkt-grid--rowgap-size-50-tablet-up {
4054
- row-gap: 3.125rem;
4055
- }
4056
4084
  .pkt-grid--gap-size-60-tablet-up {
4057
4085
  gap: 3.75rem;
4058
4086
  }
@@ -4062,6 +4090,33 @@ button.pkt-link {
4062
4090
  .pkt-grid--rowgap-size-60-tablet-up {
4063
4091
  row-gap: 3.75rem;
4064
4092
  }
4093
+ .pkt-grid--gap-size-5-tablet-up {
4094
+ gap: 0.3125rem;
4095
+ }
4096
+ .pkt-grid--colgap-size-5-tablet-up {
4097
+ column-gap: 0.3125rem;
4098
+ }
4099
+ .pkt-grid--rowgap-size-5-tablet-up {
4100
+ row-gap: 0.3125rem;
4101
+ }
4102
+ .pkt-grid--gap-size-15-tablet-up {
4103
+ gap: 0.9375rem;
4104
+ }
4105
+ .pkt-grid--colgap-size-15-tablet-up {
4106
+ column-gap: 0.9375rem;
4107
+ }
4108
+ .pkt-grid--rowgap-size-15-tablet-up {
4109
+ row-gap: 0.9375rem;
4110
+ }
4111
+ .pkt-grid--gap-size-50-tablet-up {
4112
+ gap: 3.125rem;
4113
+ }
4114
+ .pkt-grid--colgap-size-50-tablet-up {
4115
+ column-gap: 3.125rem;
4116
+ }
4117
+ .pkt-grid--rowgap-size-50-tablet-up {
4118
+ row-gap: 3.125rem;
4119
+ }
4065
4120
  .pkt-grid--gap-size-75-tablet-up {
4066
4121
  gap: 4.6875rem;
4067
4122
  }
@@ -4235,6 +4290,15 @@ button.pkt-link {
4235
4290
  .pkt-grid--rowgap-size-88-tablet-big-up {
4236
4291
  row-gap: 5.5rem;
4237
4292
  }
4293
+ .pkt-grid--gap-size-96-tablet-big-up {
4294
+ gap: 6rem;
4295
+ }
4296
+ .pkt-grid--colgap-size-96-tablet-big-up {
4297
+ column-gap: 6rem;
4298
+ }
4299
+ .pkt-grid--rowgap-size-96-tablet-big-up {
4300
+ row-gap: 6rem;
4301
+ }
4238
4302
  .pkt-grid--gap-size-104-tablet-big-up {
4239
4303
  gap: 6.5rem;
4240
4304
  }
@@ -4253,24 +4317,6 @@ button.pkt-link {
4253
4317
  .pkt-grid--rowgap-size-128-tablet-big-up {
4254
4318
  row-gap: 8rem;
4255
4319
  }
4256
- .pkt-grid--gap-size-148-tablet-big-up {
4257
- gap: 9.25rem;
4258
- }
4259
- .pkt-grid--colgap-size-148-tablet-big-up {
4260
- column-gap: 9.25rem;
4261
- }
4262
- .pkt-grid--rowgap-size-148-tablet-big-up {
4263
- row-gap: 9.25rem;
4264
- }
4265
- .pkt-grid--gap-size-5-tablet-big-up {
4266
- gap: 0.3125rem;
4267
- }
4268
- .pkt-grid--colgap-size-5-tablet-big-up {
4269
- column-gap: 0.3125rem;
4270
- }
4271
- .pkt-grid--rowgap-size-5-tablet-big-up {
4272
- row-gap: 0.3125rem;
4273
- }
4274
4320
  .pkt-grid--gap-size-10-tablet-big-up {
4275
4321
  gap: 0.625rem;
4276
4322
  }
@@ -4280,15 +4326,6 @@ button.pkt-link {
4280
4326
  .pkt-grid--rowgap-size-10-tablet-big-up {
4281
4327
  row-gap: 0.625rem;
4282
4328
  }
4283
- .pkt-grid--gap-size-15-tablet-big-up {
4284
- gap: 0.9375rem;
4285
- }
4286
- .pkt-grid--colgap-size-15-tablet-big-up {
4287
- column-gap: 0.9375rem;
4288
- }
4289
- .pkt-grid--rowgap-size-15-tablet-big-up {
4290
- row-gap: 0.9375rem;
4291
- }
4292
4329
  .pkt-grid--gap-size-20-tablet-big-up {
4293
4330
  gap: 1.25rem;
4294
4331
  }
@@ -4307,15 +4344,6 @@ button.pkt-link {
4307
4344
  .pkt-grid--rowgap-size-30-tablet-big-up {
4308
4345
  row-gap: 1.875rem;
4309
4346
  }
4310
- .pkt-grid--gap-size-50-tablet-big-up {
4311
- gap: 3.125rem;
4312
- }
4313
- .pkt-grid--colgap-size-50-tablet-big-up {
4314
- column-gap: 3.125rem;
4315
- }
4316
- .pkt-grid--rowgap-size-50-tablet-big-up {
4317
- row-gap: 3.125rem;
4318
- }
4319
4347
  .pkt-grid--gap-size-60-tablet-big-up {
4320
4348
  gap: 3.75rem;
4321
4349
  }
@@ -4325,6 +4353,33 @@ button.pkt-link {
4325
4353
  .pkt-grid--rowgap-size-60-tablet-big-up {
4326
4354
  row-gap: 3.75rem;
4327
4355
  }
4356
+ .pkt-grid--gap-size-5-tablet-big-up {
4357
+ gap: 0.3125rem;
4358
+ }
4359
+ .pkt-grid--colgap-size-5-tablet-big-up {
4360
+ column-gap: 0.3125rem;
4361
+ }
4362
+ .pkt-grid--rowgap-size-5-tablet-big-up {
4363
+ row-gap: 0.3125rem;
4364
+ }
4365
+ .pkt-grid--gap-size-15-tablet-big-up {
4366
+ gap: 0.9375rem;
4367
+ }
4368
+ .pkt-grid--colgap-size-15-tablet-big-up {
4369
+ column-gap: 0.9375rem;
4370
+ }
4371
+ .pkt-grid--rowgap-size-15-tablet-big-up {
4372
+ row-gap: 0.9375rem;
4373
+ }
4374
+ .pkt-grid--gap-size-50-tablet-big-up {
4375
+ gap: 3.125rem;
4376
+ }
4377
+ .pkt-grid--colgap-size-50-tablet-big-up {
4378
+ column-gap: 3.125rem;
4379
+ }
4380
+ .pkt-grid--rowgap-size-50-tablet-big-up {
4381
+ row-gap: 3.125rem;
4382
+ }
4328
4383
  .pkt-grid--gap-size-75-tablet-big-up {
4329
4384
  gap: 4.6875rem;
4330
4385
  }
@@ -4498,6 +4553,15 @@ button.pkt-link {
4498
4553
  .pkt-grid--rowgap-size-88-laptop-up {
4499
4554
  row-gap: 5.5rem;
4500
4555
  }
4556
+ .pkt-grid--gap-size-96-laptop-up {
4557
+ gap: 6rem;
4558
+ }
4559
+ .pkt-grid--colgap-size-96-laptop-up {
4560
+ column-gap: 6rem;
4561
+ }
4562
+ .pkt-grid--rowgap-size-96-laptop-up {
4563
+ row-gap: 6rem;
4564
+ }
4501
4565
  .pkt-grid--gap-size-104-laptop-up {
4502
4566
  gap: 6.5rem;
4503
4567
  }
@@ -4516,24 +4580,6 @@ button.pkt-link {
4516
4580
  .pkt-grid--rowgap-size-128-laptop-up {
4517
4581
  row-gap: 8rem;
4518
4582
  }
4519
- .pkt-grid--gap-size-148-laptop-up {
4520
- gap: 9.25rem;
4521
- }
4522
- .pkt-grid--colgap-size-148-laptop-up {
4523
- column-gap: 9.25rem;
4524
- }
4525
- .pkt-grid--rowgap-size-148-laptop-up {
4526
- row-gap: 9.25rem;
4527
- }
4528
- .pkt-grid--gap-size-5-laptop-up {
4529
- gap: 0.3125rem;
4530
- }
4531
- .pkt-grid--colgap-size-5-laptop-up {
4532
- column-gap: 0.3125rem;
4533
- }
4534
- .pkt-grid--rowgap-size-5-laptop-up {
4535
- row-gap: 0.3125rem;
4536
- }
4537
4583
  .pkt-grid--gap-size-10-laptop-up {
4538
4584
  gap: 0.625rem;
4539
4585
  }
@@ -4543,15 +4589,6 @@ button.pkt-link {
4543
4589
  .pkt-grid--rowgap-size-10-laptop-up {
4544
4590
  row-gap: 0.625rem;
4545
4591
  }
4546
- .pkt-grid--gap-size-15-laptop-up {
4547
- gap: 0.9375rem;
4548
- }
4549
- .pkt-grid--colgap-size-15-laptop-up {
4550
- column-gap: 0.9375rem;
4551
- }
4552
- .pkt-grid--rowgap-size-15-laptop-up {
4553
- row-gap: 0.9375rem;
4554
- }
4555
4592
  .pkt-grid--gap-size-20-laptop-up {
4556
4593
  gap: 1.25rem;
4557
4594
  }
@@ -4570,15 +4607,6 @@ button.pkt-link {
4570
4607
  .pkt-grid--rowgap-size-30-laptop-up {
4571
4608
  row-gap: 1.875rem;
4572
4609
  }
4573
- .pkt-grid--gap-size-50-laptop-up {
4574
- gap: 3.125rem;
4575
- }
4576
- .pkt-grid--colgap-size-50-laptop-up {
4577
- column-gap: 3.125rem;
4578
- }
4579
- .pkt-grid--rowgap-size-50-laptop-up {
4580
- row-gap: 3.125rem;
4581
- }
4582
4610
  .pkt-grid--gap-size-60-laptop-up {
4583
4611
  gap: 3.75rem;
4584
4612
  }
@@ -4588,6 +4616,33 @@ button.pkt-link {
4588
4616
  .pkt-grid--rowgap-size-60-laptop-up {
4589
4617
  row-gap: 3.75rem;
4590
4618
  }
4619
+ .pkt-grid--gap-size-5-laptop-up {
4620
+ gap: 0.3125rem;
4621
+ }
4622
+ .pkt-grid--colgap-size-5-laptop-up {
4623
+ column-gap: 0.3125rem;
4624
+ }
4625
+ .pkt-grid--rowgap-size-5-laptop-up {
4626
+ row-gap: 0.3125rem;
4627
+ }
4628
+ .pkt-grid--gap-size-15-laptop-up {
4629
+ gap: 0.9375rem;
4630
+ }
4631
+ .pkt-grid--colgap-size-15-laptop-up {
4632
+ column-gap: 0.9375rem;
4633
+ }
4634
+ .pkt-grid--rowgap-size-15-laptop-up {
4635
+ row-gap: 0.9375rem;
4636
+ }
4637
+ .pkt-grid--gap-size-50-laptop-up {
4638
+ gap: 3.125rem;
4639
+ }
4640
+ .pkt-grid--colgap-size-50-laptop-up {
4641
+ column-gap: 3.125rem;
4642
+ }
4643
+ .pkt-grid--rowgap-size-50-laptop-up {
4644
+ row-gap: 3.125rem;
4645
+ }
4591
4646
  .pkt-grid--gap-size-75-laptop-up {
4592
4647
  gap: 4.6875rem;
4593
4648
  }
@@ -4761,6 +4816,15 @@ button.pkt-link {
4761
4816
  .pkt-grid--rowgap-size-88-desktop-up {
4762
4817
  row-gap: 5.5rem;
4763
4818
  }
4819
+ .pkt-grid--gap-size-96-desktop-up {
4820
+ gap: 6rem;
4821
+ }
4822
+ .pkt-grid--colgap-size-96-desktop-up {
4823
+ column-gap: 6rem;
4824
+ }
4825
+ .pkt-grid--rowgap-size-96-desktop-up {
4826
+ row-gap: 6rem;
4827
+ }
4764
4828
  .pkt-grid--gap-size-104-desktop-up {
4765
4829
  gap: 6.5rem;
4766
4830
  }
@@ -4779,24 +4843,6 @@ button.pkt-link {
4779
4843
  .pkt-grid--rowgap-size-128-desktop-up {
4780
4844
  row-gap: 8rem;
4781
4845
  }
4782
- .pkt-grid--gap-size-148-desktop-up {
4783
- gap: 9.25rem;
4784
- }
4785
- .pkt-grid--colgap-size-148-desktop-up {
4786
- column-gap: 9.25rem;
4787
- }
4788
- .pkt-grid--rowgap-size-148-desktop-up {
4789
- row-gap: 9.25rem;
4790
- }
4791
- .pkt-grid--gap-size-5-desktop-up {
4792
- gap: 0.3125rem;
4793
- }
4794
- .pkt-grid--colgap-size-5-desktop-up {
4795
- column-gap: 0.3125rem;
4796
- }
4797
- .pkt-grid--rowgap-size-5-desktop-up {
4798
- row-gap: 0.3125rem;
4799
- }
4800
4846
  .pkt-grid--gap-size-10-desktop-up {
4801
4847
  gap: 0.625rem;
4802
4848
  }
@@ -4806,15 +4852,6 @@ button.pkt-link {
4806
4852
  .pkt-grid--rowgap-size-10-desktop-up {
4807
4853
  row-gap: 0.625rem;
4808
4854
  }
4809
- .pkt-grid--gap-size-15-desktop-up {
4810
- gap: 0.9375rem;
4811
- }
4812
- .pkt-grid--colgap-size-15-desktop-up {
4813
- column-gap: 0.9375rem;
4814
- }
4815
- .pkt-grid--rowgap-size-15-desktop-up {
4816
- row-gap: 0.9375rem;
4817
- }
4818
4855
  .pkt-grid--gap-size-20-desktop-up {
4819
4856
  gap: 1.25rem;
4820
4857
  }
@@ -4833,15 +4870,6 @@ button.pkt-link {
4833
4870
  .pkt-grid--rowgap-size-30-desktop-up {
4834
4871
  row-gap: 1.875rem;
4835
4872
  }
4836
- .pkt-grid--gap-size-50-desktop-up {
4837
- gap: 3.125rem;
4838
- }
4839
- .pkt-grid--colgap-size-50-desktop-up {
4840
- column-gap: 3.125rem;
4841
- }
4842
- .pkt-grid--rowgap-size-50-desktop-up {
4843
- row-gap: 3.125rem;
4844
- }
4845
4873
  .pkt-grid--gap-size-60-desktop-up {
4846
4874
  gap: 3.75rem;
4847
4875
  }
@@ -4851,6 +4879,33 @@ button.pkt-link {
4851
4879
  .pkt-grid--rowgap-size-60-desktop-up {
4852
4880
  row-gap: 3.75rem;
4853
4881
  }
4882
+ .pkt-grid--gap-size-5-desktop-up {
4883
+ gap: 0.3125rem;
4884
+ }
4885
+ .pkt-grid--colgap-size-5-desktop-up {
4886
+ column-gap: 0.3125rem;
4887
+ }
4888
+ .pkt-grid--rowgap-size-5-desktop-up {
4889
+ row-gap: 0.3125rem;
4890
+ }
4891
+ .pkt-grid--gap-size-15-desktop-up {
4892
+ gap: 0.9375rem;
4893
+ }
4894
+ .pkt-grid--colgap-size-15-desktop-up {
4895
+ column-gap: 0.9375rem;
4896
+ }
4897
+ .pkt-grid--rowgap-size-15-desktop-up {
4898
+ row-gap: 0.9375rem;
4899
+ }
4900
+ .pkt-grid--gap-size-50-desktop-up {
4901
+ gap: 3.125rem;
4902
+ }
4903
+ .pkt-grid--colgap-size-50-desktop-up {
4904
+ column-gap: 3.125rem;
4905
+ }
4906
+ .pkt-grid--rowgap-size-50-desktop-up {
4907
+ row-gap: 3.125rem;
4908
+ }
4854
4909
  .pkt-grid--gap-size-75-desktop-up {
4855
4910
  gap: 4.6875rem;
4856
4911
  }
@@ -4870,57 +4925,6 @@ button.pkt-link {
4870
4925
  row-gap: 6.25rem;
4871
4926
  }
4872
4927
  }
4873
- .pkt-grid > .pkt-cell--left, .pkt-grid > * > .pkt-cell--left {
4874
- justify-self: start;
4875
- }
4876
- .pkt-grid > .pkt-cell--center, .pkt-grid > * > .pkt-cell--center {
4877
- justify-self: center;
4878
- }
4879
- .pkt-grid > .pkt-cell--right, .pkt-grid > * > .pkt-cell--right {
4880
- justify-self: end;
4881
- }
4882
- .pkt-grid > .pkt-cell--top, .pkt-grid > * > .pkt-cell--top {
4883
- align-self: self-start;
4884
- }
4885
- .pkt-grid > .pkt-cell--center-vertical, .pkt-grid > * > .pkt-cell--center-vertical {
4886
- align-self: center;
4887
- }
4888
- .pkt-grid > .pkt-cell--bottom, .pkt-grid > * > .pkt-cell--bottom {
4889
- align-self: self-end;
4890
- }
4891
- .pkt-grid > .pkt-cell.pkt-cell--span2, .pkt-grid > * > .pkt-cell.pkt-cell--span2 {
4892
- grid-column-end: span 2;
4893
- }
4894
- .pkt-grid > .pkt-cell.pkt-cell--span3, .pkt-grid > * > .pkt-cell.pkt-cell--span3 {
4895
- grid-column-end: span 3;
4896
- }
4897
- .pkt-grid > .pkt-cell.pkt-cell--span4, .pkt-grid > * > .pkt-cell.pkt-cell--span4 {
4898
- grid-column-end: span 4;
4899
- }
4900
- .pkt-grid > .pkt-cell.pkt-cell--span5, .pkt-grid > * > .pkt-cell.pkt-cell--span5 {
4901
- grid-column-end: span 5;
4902
- }
4903
- .pkt-grid > .pkt-cell.pkt-cell--span6, .pkt-grid > * > .pkt-cell.pkt-cell--span6 {
4904
- grid-column-end: span 6;
4905
- }
4906
- .pkt-grid > .pkt-cell.pkt-cell--span7, .pkt-grid > * > .pkt-cell.pkt-cell--span7 {
4907
- grid-column-end: span 7;
4908
- }
4909
- .pkt-grid > .pkt-cell.pkt-cell--span8, .pkt-grid > * > .pkt-cell.pkt-cell--span8 {
4910
- grid-column-end: span 8;
4911
- }
4912
- .pkt-grid > .pkt-cell.pkt-cell--span9, .pkt-grid > * > .pkt-cell.pkt-cell--span9 {
4913
- grid-column-end: span 9;
4914
- }
4915
- .pkt-grid > .pkt-cell.pkt-cell--span10, .pkt-grid > * > .pkt-cell.pkt-cell--span10 {
4916
- grid-column-end: span 10;
4917
- }
4918
- .pkt-grid > .pkt-cell.pkt-cell--span11, .pkt-grid > * > .pkt-cell.pkt-cell--span11 {
4919
- grid-column-end: span 11;
4920
- }
4921
- .pkt-grid > .pkt-cell.pkt-cell--span12, .pkt-grid > * > .pkt-cell.pkt-cell--span12 {
4922
- grid-column-end: span 12;
4923
- }
4924
4928
  @media screen {
4925
4929
  .pkt-grid > .pkt-cell.pkt-cell--span2-mobile-up, .pkt-grid > * > .pkt-cell.pkt-cell--span2-mobile-up {
4926
4930
  grid-column-end: span 2;
@@ -7782,6 +7786,66 @@ button.pkt-link {
7782
7786
  gap: 5.5rem !important;
7783
7787
  }
7784
7788
 
7789
+ .m-size-96 {
7790
+ margin: 6rem !important;
7791
+ }
7792
+
7793
+ .mt-size-96 {
7794
+ margin-block-start: 6rem !important;
7795
+ }
7796
+
7797
+ .mr-size-96 {
7798
+ margin-inline-end: 6rem !important;
7799
+ }
7800
+
7801
+ .mb-size-96 {
7802
+ margin-block-end: 6rem !important;
7803
+ }
7804
+
7805
+ .ml-size-96 {
7806
+ margin-inline-start: 6rem !important;
7807
+ }
7808
+
7809
+ .mx-size-96 {
7810
+ margin-inline: 6rem !important;
7811
+ }
7812
+
7813
+ .my-size-96 {
7814
+ margin-block: 6rem !important;
7815
+ }
7816
+
7817
+ .p-size-96 {
7818
+ padding: 6rem !important;
7819
+ }
7820
+
7821
+ .pt-size-96 {
7822
+ padding-block-start: 6rem !important;
7823
+ }
7824
+
7825
+ .pr-size-96 {
7826
+ padding-inline-end: 6rem !important;
7827
+ }
7828
+
7829
+ .pb-size-96 {
7830
+ padding-block-end: 6rem !important;
7831
+ }
7832
+
7833
+ .pl-size-96 {
7834
+ padding-inline-start: 6rem !important;
7835
+ }
7836
+
7837
+ .px-size-96 {
7838
+ padding-inline: 6rem !important;
7839
+ }
7840
+
7841
+ .py-size-96 {
7842
+ padding-block: 6rem !important;
7843
+ }
7844
+
7845
+ .gap-size-96 {
7846
+ gap: 6rem !important;
7847
+ }
7848
+
7785
7849
  .m-size-104 {
7786
7850
  margin: 6.5rem !important;
7787
7851
  }
@@ -7902,126 +7966,6 @@ button.pkt-link {
7902
7966
  gap: 8rem !important;
7903
7967
  }
7904
7968
 
7905
- .m-size-148 {
7906
- margin: 9.25rem !important;
7907
- }
7908
-
7909
- .mt-size-148 {
7910
- margin-block-start: 9.25rem !important;
7911
- }
7912
-
7913
- .mr-size-148 {
7914
- margin-inline-end: 9.25rem !important;
7915
- }
7916
-
7917
- .mb-size-148 {
7918
- margin-block-end: 9.25rem !important;
7919
- }
7920
-
7921
- .ml-size-148 {
7922
- margin-inline-start: 9.25rem !important;
7923
- }
7924
-
7925
- .mx-size-148 {
7926
- margin-inline: 9.25rem !important;
7927
- }
7928
-
7929
- .my-size-148 {
7930
- margin-block: 9.25rem !important;
7931
- }
7932
-
7933
- .p-size-148 {
7934
- padding: 9.25rem !important;
7935
- }
7936
-
7937
- .pt-size-148 {
7938
- padding-block-start: 9.25rem !important;
7939
- }
7940
-
7941
- .pr-size-148 {
7942
- padding-inline-end: 9.25rem !important;
7943
- }
7944
-
7945
- .pb-size-148 {
7946
- padding-block-end: 9.25rem !important;
7947
- }
7948
-
7949
- .pl-size-148 {
7950
- padding-inline-start: 9.25rem !important;
7951
- }
7952
-
7953
- .px-size-148 {
7954
- padding-inline: 9.25rem !important;
7955
- }
7956
-
7957
- .py-size-148 {
7958
- padding-block: 9.25rem !important;
7959
- }
7960
-
7961
- .gap-size-148 {
7962
- gap: 9.25rem !important;
7963
- }
7964
-
7965
- .m-size-5 {
7966
- margin: 0.3125rem !important;
7967
- }
7968
-
7969
- .mt-size-5 {
7970
- margin-block-start: 0.3125rem !important;
7971
- }
7972
-
7973
- .mr-size-5 {
7974
- margin-inline-end: 0.3125rem !important;
7975
- }
7976
-
7977
- .mb-size-5 {
7978
- margin-block-end: 0.3125rem !important;
7979
- }
7980
-
7981
- .ml-size-5 {
7982
- margin-inline-start: 0.3125rem !important;
7983
- }
7984
-
7985
- .mx-size-5 {
7986
- margin-inline: 0.3125rem !important;
7987
- }
7988
-
7989
- .my-size-5 {
7990
- margin-block: 0.3125rem !important;
7991
- }
7992
-
7993
- .p-size-5 {
7994
- padding: 0.3125rem !important;
7995
- }
7996
-
7997
- .pt-size-5 {
7998
- padding-block-start: 0.3125rem !important;
7999
- }
8000
-
8001
- .pr-size-5 {
8002
- padding-inline-end: 0.3125rem !important;
8003
- }
8004
-
8005
- .pb-size-5 {
8006
- padding-block-end: 0.3125rem !important;
8007
- }
8008
-
8009
- .pl-size-5 {
8010
- padding-inline-start: 0.3125rem !important;
8011
- }
8012
-
8013
- .px-size-5 {
8014
- padding-inline: 0.3125rem !important;
8015
- }
8016
-
8017
- .py-size-5 {
8018
- padding-block: 0.3125rem !important;
8019
- }
8020
-
8021
- .gap-size-5 {
8022
- gap: 0.3125rem !important;
8023
- }
8024
-
8025
7969
  .m-size-10 {
8026
7970
  margin: 0.625rem !important;
8027
7971
  }
@@ -8082,66 +8026,6 @@ button.pkt-link {
8082
8026
  gap: 0.625rem !important;
8083
8027
  }
8084
8028
 
8085
- .m-size-15 {
8086
- margin: 0.9375rem !important;
8087
- }
8088
-
8089
- .mt-size-15 {
8090
- margin-block-start: 0.9375rem !important;
8091
- }
8092
-
8093
- .mr-size-15 {
8094
- margin-inline-end: 0.9375rem !important;
8095
- }
8096
-
8097
- .mb-size-15 {
8098
- margin-block-end: 0.9375rem !important;
8099
- }
8100
-
8101
- .ml-size-15 {
8102
- margin-inline-start: 0.9375rem !important;
8103
- }
8104
-
8105
- .mx-size-15 {
8106
- margin-inline: 0.9375rem !important;
8107
- }
8108
-
8109
- .my-size-15 {
8110
- margin-block: 0.9375rem !important;
8111
- }
8112
-
8113
- .p-size-15 {
8114
- padding: 0.9375rem !important;
8115
- }
8116
-
8117
- .pt-size-15 {
8118
- padding-block-start: 0.9375rem !important;
8119
- }
8120
-
8121
- .pr-size-15 {
8122
- padding-inline-end: 0.9375rem !important;
8123
- }
8124
-
8125
- .pb-size-15 {
8126
- padding-block-end: 0.9375rem !important;
8127
- }
8128
-
8129
- .pl-size-15 {
8130
- padding-inline-start: 0.9375rem !important;
8131
- }
8132
-
8133
- .px-size-15 {
8134
- padding-inline: 0.9375rem !important;
8135
- }
8136
-
8137
- .py-size-15 {
8138
- padding-block: 0.9375rem !important;
8139
- }
8140
-
8141
- .gap-size-15 {
8142
- gap: 0.9375rem !important;
8143
- }
8144
-
8145
8029
  .m-size-20 {
8146
8030
  margin: 1.25rem !important;
8147
8031
  }
@@ -8262,124 +8146,244 @@ button.pkt-link {
8262
8146
  gap: 1.875rem !important;
8263
8147
  }
8264
8148
 
8265
- .m-size-50 {
8266
- margin: 3.125rem !important;
8149
+ .m-size-60 {
8150
+ margin: 3.75rem !important;
8267
8151
  }
8268
8152
 
8269
- .mt-size-50 {
8270
- margin-block-start: 3.125rem !important;
8153
+ .mt-size-60 {
8154
+ margin-block-start: 3.75rem !important;
8271
8155
  }
8272
8156
 
8273
- .mr-size-50 {
8274
- margin-inline-end: 3.125rem !important;
8157
+ .mr-size-60 {
8158
+ margin-inline-end: 3.75rem !important;
8275
8159
  }
8276
8160
 
8277
- .mb-size-50 {
8278
- margin-block-end: 3.125rem !important;
8161
+ .mb-size-60 {
8162
+ margin-block-end: 3.75rem !important;
8279
8163
  }
8280
8164
 
8281
- .ml-size-50 {
8282
- margin-inline-start: 3.125rem !important;
8165
+ .ml-size-60 {
8166
+ margin-inline-start: 3.75rem !important;
8283
8167
  }
8284
8168
 
8285
- .mx-size-50 {
8286
- margin-inline: 3.125rem !important;
8169
+ .mx-size-60 {
8170
+ margin-inline: 3.75rem !important;
8287
8171
  }
8288
8172
 
8289
- .my-size-50 {
8290
- margin-block: 3.125rem !important;
8173
+ .my-size-60 {
8174
+ margin-block: 3.75rem !important;
8291
8175
  }
8292
8176
 
8293
- .p-size-50 {
8294
- padding: 3.125rem !important;
8177
+ .p-size-60 {
8178
+ padding: 3.75rem !important;
8295
8179
  }
8296
8180
 
8297
- .pt-size-50 {
8298
- padding-block-start: 3.125rem !important;
8181
+ .pt-size-60 {
8182
+ padding-block-start: 3.75rem !important;
8299
8183
  }
8300
8184
 
8301
- .pr-size-50 {
8302
- padding-inline-end: 3.125rem !important;
8185
+ .pr-size-60 {
8186
+ padding-inline-end: 3.75rem !important;
8303
8187
  }
8304
8188
 
8305
- .pb-size-50 {
8306
- padding-block-end: 3.125rem !important;
8189
+ .pb-size-60 {
8190
+ padding-block-end: 3.75rem !important;
8307
8191
  }
8308
8192
 
8309
- .pl-size-50 {
8310
- padding-inline-start: 3.125rem !important;
8193
+ .pl-size-60 {
8194
+ padding-inline-start: 3.75rem !important;
8311
8195
  }
8312
8196
 
8313
- .px-size-50 {
8314
- padding-inline: 3.125rem !important;
8197
+ .px-size-60 {
8198
+ padding-inline: 3.75rem !important;
8315
8199
  }
8316
8200
 
8317
- .py-size-50 {
8318
- padding-block: 3.125rem !important;
8201
+ .py-size-60 {
8202
+ padding-block: 3.75rem !important;
8319
8203
  }
8320
8204
 
8321
- .gap-size-50 {
8322
- gap: 3.125rem !important;
8323
- }
8205
+ .gap-size-60 {
8206
+ gap: 3.75rem !important;
8207
+ }
8324
8208
 
8325
- .m-size-60 {
8326
- margin: 3.75rem !important;
8209
+ .m-size-5 {
8210
+ margin: 0.3125rem !important;
8327
8211
  }
8328
8212
 
8329
- .mt-size-60 {
8330
- margin-block-start: 3.75rem !important;
8213
+ .mt-size-5 {
8214
+ margin-block-start: 0.3125rem !important;
8331
8215
  }
8332
8216
 
8333
- .mr-size-60 {
8334
- margin-inline-end: 3.75rem !important;
8217
+ .mr-size-5 {
8218
+ margin-inline-end: 0.3125rem !important;
8335
8219
  }
8336
8220
 
8337
- .mb-size-60 {
8338
- margin-block-end: 3.75rem !important;
8221
+ .mb-size-5 {
8222
+ margin-block-end: 0.3125rem !important;
8339
8223
  }
8340
8224
 
8341
- .ml-size-60 {
8342
- margin-inline-start: 3.75rem !important;
8225
+ .ml-size-5 {
8226
+ margin-inline-start: 0.3125rem !important;
8343
8227
  }
8344
8228
 
8345
- .mx-size-60 {
8346
- margin-inline: 3.75rem !important;
8229
+ .mx-size-5 {
8230
+ margin-inline: 0.3125rem !important;
8347
8231
  }
8348
8232
 
8349
- .my-size-60 {
8350
- margin-block: 3.75rem !important;
8233
+ .my-size-5 {
8234
+ margin-block: 0.3125rem !important;
8351
8235
  }
8352
8236
 
8353
- .p-size-60 {
8354
- padding: 3.75rem !important;
8237
+ .p-size-5 {
8238
+ padding: 0.3125rem !important;
8355
8239
  }
8356
8240
 
8357
- .pt-size-60 {
8358
- padding-block-start: 3.75rem !important;
8241
+ .pt-size-5 {
8242
+ padding-block-start: 0.3125rem !important;
8359
8243
  }
8360
8244
 
8361
- .pr-size-60 {
8362
- padding-inline-end: 3.75rem !important;
8245
+ .pr-size-5 {
8246
+ padding-inline-end: 0.3125rem !important;
8363
8247
  }
8364
8248
 
8365
- .pb-size-60 {
8366
- padding-block-end: 3.75rem !important;
8249
+ .pb-size-5 {
8250
+ padding-block-end: 0.3125rem !important;
8367
8251
  }
8368
8252
 
8369
- .pl-size-60 {
8370
- padding-inline-start: 3.75rem !important;
8253
+ .pl-size-5 {
8254
+ padding-inline-start: 0.3125rem !important;
8371
8255
  }
8372
8256
 
8373
- .px-size-60 {
8374
- padding-inline: 3.75rem !important;
8257
+ .px-size-5 {
8258
+ padding-inline: 0.3125rem !important;
8375
8259
  }
8376
8260
 
8377
- .py-size-60 {
8378
- padding-block: 3.75rem !important;
8261
+ .py-size-5 {
8262
+ padding-block: 0.3125rem !important;
8379
8263
  }
8380
8264
 
8381
- .gap-size-60 {
8382
- gap: 3.75rem !important;
8265
+ .gap-size-5 {
8266
+ gap: 0.3125rem !important;
8267
+ }
8268
+
8269
+ .m-size-15 {
8270
+ margin: 0.9375rem !important;
8271
+ }
8272
+
8273
+ .mt-size-15 {
8274
+ margin-block-start: 0.9375rem !important;
8275
+ }
8276
+
8277
+ .mr-size-15 {
8278
+ margin-inline-end: 0.9375rem !important;
8279
+ }
8280
+
8281
+ .mb-size-15 {
8282
+ margin-block-end: 0.9375rem !important;
8283
+ }
8284
+
8285
+ .ml-size-15 {
8286
+ margin-inline-start: 0.9375rem !important;
8287
+ }
8288
+
8289
+ .mx-size-15 {
8290
+ margin-inline: 0.9375rem !important;
8291
+ }
8292
+
8293
+ .my-size-15 {
8294
+ margin-block: 0.9375rem !important;
8295
+ }
8296
+
8297
+ .p-size-15 {
8298
+ padding: 0.9375rem !important;
8299
+ }
8300
+
8301
+ .pt-size-15 {
8302
+ padding-block-start: 0.9375rem !important;
8303
+ }
8304
+
8305
+ .pr-size-15 {
8306
+ padding-inline-end: 0.9375rem !important;
8307
+ }
8308
+
8309
+ .pb-size-15 {
8310
+ padding-block-end: 0.9375rem !important;
8311
+ }
8312
+
8313
+ .pl-size-15 {
8314
+ padding-inline-start: 0.9375rem !important;
8315
+ }
8316
+
8317
+ .px-size-15 {
8318
+ padding-inline: 0.9375rem !important;
8319
+ }
8320
+
8321
+ .py-size-15 {
8322
+ padding-block: 0.9375rem !important;
8323
+ }
8324
+
8325
+ .gap-size-15 {
8326
+ gap: 0.9375rem !important;
8327
+ }
8328
+
8329
+ .m-size-50 {
8330
+ margin: 3.125rem !important;
8331
+ }
8332
+
8333
+ .mt-size-50 {
8334
+ margin-block-start: 3.125rem !important;
8335
+ }
8336
+
8337
+ .mr-size-50 {
8338
+ margin-inline-end: 3.125rem !important;
8339
+ }
8340
+
8341
+ .mb-size-50 {
8342
+ margin-block-end: 3.125rem !important;
8343
+ }
8344
+
8345
+ .ml-size-50 {
8346
+ margin-inline-start: 3.125rem !important;
8347
+ }
8348
+
8349
+ .mx-size-50 {
8350
+ margin-inline: 3.125rem !important;
8351
+ }
8352
+
8353
+ .my-size-50 {
8354
+ margin-block: 3.125rem !important;
8355
+ }
8356
+
8357
+ .p-size-50 {
8358
+ padding: 3.125rem !important;
8359
+ }
8360
+
8361
+ .pt-size-50 {
8362
+ padding-block-start: 3.125rem !important;
8363
+ }
8364
+
8365
+ .pr-size-50 {
8366
+ padding-inline-end: 3.125rem !important;
8367
+ }
8368
+
8369
+ .pb-size-50 {
8370
+ padding-block-end: 3.125rem !important;
8371
+ }
8372
+
8373
+ .pl-size-50 {
8374
+ padding-inline-start: 3.125rem !important;
8375
+ }
8376
+
8377
+ .px-size-50 {
8378
+ padding-inline: 3.125rem !important;
8379
+ }
8380
+
8381
+ .py-size-50 {
8382
+ padding-block: 3.125rem !important;
8383
+ }
8384
+
8385
+ .gap-size-50 {
8386
+ gap: 3.125rem !important;
8383
8387
  }
8384
8388
 
8385
8389
  .m-size-75 {
@@ -8502,6 +8506,9 @@ button.pkt-link {
8502
8506
  gap: 6.25rem !important;
8503
8507
  }
8504
8508
 
8509
+ /*
8510
+ * Responsiv spacing
8511
+ */
8505
8512
  @media screen {
8506
8513
  .m-size-0--mobile-up {
8507
8514
  margin: 0rem !important;
@@ -9268,6 +9275,51 @@ button.pkt-link {
9268
9275
  .gap-size-88--mobile-up {
9269
9276
  gap: 5.5rem !important;
9270
9277
  }
9278
+ .m-size-96--mobile-up {
9279
+ margin: 6rem !important;
9280
+ }
9281
+ .mt-size-96--mobile-up {
9282
+ margin-block-start: 6rem !important;
9283
+ }
9284
+ .mr-size-96--mobile-up {
9285
+ margin-inline-end: 6rem !important;
9286
+ }
9287
+ .mb-size-96--mobile-up {
9288
+ margin-block-end: 6rem !important;
9289
+ }
9290
+ .ml-size-96--mobile-up {
9291
+ margin-inline-start: 6rem !important;
9292
+ }
9293
+ .mx-size-96--mobile-up {
9294
+ margin-inline: 6rem !important;
9295
+ }
9296
+ .my-size-96--mobile-up {
9297
+ margin-block: 6rem !important;
9298
+ }
9299
+ .p-size-96--mobile-up {
9300
+ padding: 6rem !important;
9301
+ }
9302
+ .pt-size-96--mobile-up {
9303
+ padding-block-start: 6rem !important;
9304
+ }
9305
+ .pr-size-96--mobile-up {
9306
+ padding-inline-end: 6rem !important;
9307
+ }
9308
+ .pb-size-96--mobile-up {
9309
+ padding-block-end: 6rem !important;
9310
+ }
9311
+ .pl-size-96--mobile-up {
9312
+ padding-inline-start: 6rem !important;
9313
+ }
9314
+ .px-size-96--mobile-up {
9315
+ padding-inline: 6rem !important;
9316
+ }
9317
+ .py-size-96--mobile-up {
9318
+ padding-block: 6rem !important;
9319
+ }
9320
+ .gap-size-96--mobile-up {
9321
+ gap: 6rem !important;
9322
+ }
9271
9323
  .m-size-104--mobile-up {
9272
9324
  margin: 6.5rem !important;
9273
9325
  }
@@ -9358,203 +9410,68 @@ button.pkt-link {
9358
9410
  .gap-size-128--mobile-up {
9359
9411
  gap: 8rem !important;
9360
9412
  }
9361
- .m-size-148--mobile-up {
9362
- margin: 9.25rem !important;
9413
+ .m-size-10--mobile-up {
9414
+ margin: 0.625rem !important;
9363
9415
  }
9364
- .mt-size-148--mobile-up {
9365
- margin-block-start: 9.25rem !important;
9416
+ .mt-size-10--mobile-up {
9417
+ margin-block-start: 0.625rem !important;
9366
9418
  }
9367
- .mr-size-148--mobile-up {
9368
- margin-inline-end: 9.25rem !important;
9419
+ .mr-size-10--mobile-up {
9420
+ margin-inline-end: 0.625rem !important;
9369
9421
  }
9370
- .mb-size-148--mobile-up {
9371
- margin-block-end: 9.25rem !important;
9422
+ .mb-size-10--mobile-up {
9423
+ margin-block-end: 0.625rem !important;
9372
9424
  }
9373
- .ml-size-148--mobile-up {
9374
- margin-inline-start: 9.25rem !important;
9425
+ .ml-size-10--mobile-up {
9426
+ margin-inline-start: 0.625rem !important;
9375
9427
  }
9376
- .mx-size-148--mobile-up {
9377
- margin-inline: 9.25rem !important;
9428
+ .mx-size-10--mobile-up {
9429
+ margin-inline: 0.625rem !important;
9378
9430
  }
9379
- .my-size-148--mobile-up {
9380
- margin-block: 9.25rem !important;
9431
+ .my-size-10--mobile-up {
9432
+ margin-block: 0.625rem !important;
9381
9433
  }
9382
- .p-size-148--mobile-up {
9383
- padding: 9.25rem !important;
9434
+ .p-size-10--mobile-up {
9435
+ padding: 0.625rem !important;
9384
9436
  }
9385
- .pt-size-148--mobile-up {
9386
- padding-block-start: 9.25rem !important;
9437
+ .pt-size-10--mobile-up {
9438
+ padding-block-start: 0.625rem !important;
9387
9439
  }
9388
- .pr-size-148--mobile-up {
9389
- padding-inline-end: 9.25rem !important;
9440
+ .pr-size-10--mobile-up {
9441
+ padding-inline-end: 0.625rem !important;
9390
9442
  }
9391
- .pb-size-148--mobile-up {
9392
- padding-block-end: 9.25rem !important;
9443
+ .pb-size-10--mobile-up {
9444
+ padding-block-end: 0.625rem !important;
9393
9445
  }
9394
- .pl-size-148--mobile-up {
9395
- padding-inline-start: 9.25rem !important;
9446
+ .pl-size-10--mobile-up {
9447
+ padding-inline-start: 0.625rem !important;
9396
9448
  }
9397
- .px-size-148--mobile-up {
9398
- padding-inline: 9.25rem !important;
9449
+ .px-size-10--mobile-up {
9450
+ padding-inline: 0.625rem !important;
9399
9451
  }
9400
- .py-size-148--mobile-up {
9401
- padding-block: 9.25rem !important;
9452
+ .py-size-10--mobile-up {
9453
+ padding-block: 0.625rem !important;
9402
9454
  }
9403
- .gap-size-148--mobile-up {
9404
- gap: 9.25rem !important;
9455
+ .gap-size-10--mobile-up {
9456
+ gap: 0.625rem !important;
9405
9457
  }
9406
- .m-size-5--mobile-up {
9407
- margin: 0.3125rem !important;
9458
+ .m-size-20--mobile-up {
9459
+ margin: 1.25rem !important;
9408
9460
  }
9409
- .mt-size-5--mobile-up {
9410
- margin-block-start: 0.3125rem !important;
9461
+ .mt-size-20--mobile-up {
9462
+ margin-block-start: 1.25rem !important;
9411
9463
  }
9412
- .mr-size-5--mobile-up {
9413
- margin-inline-end: 0.3125rem !important;
9464
+ .mr-size-20--mobile-up {
9465
+ margin-inline-end: 1.25rem !important;
9414
9466
  }
9415
- .mb-size-5--mobile-up {
9416
- margin-block-end: 0.3125rem !important;
9467
+ .mb-size-20--mobile-up {
9468
+ margin-block-end: 1.25rem !important;
9417
9469
  }
9418
- .ml-size-5--mobile-up {
9419
- margin-inline-start: 0.3125rem !important;
9470
+ .ml-size-20--mobile-up {
9471
+ margin-inline-start: 1.25rem !important;
9420
9472
  }
9421
- .mx-size-5--mobile-up {
9422
- margin-inline: 0.3125rem !important;
9423
- }
9424
- .my-size-5--mobile-up {
9425
- margin-block: 0.3125rem !important;
9426
- }
9427
- .p-size-5--mobile-up {
9428
- padding: 0.3125rem !important;
9429
- }
9430
- .pt-size-5--mobile-up {
9431
- padding-block-start: 0.3125rem !important;
9432
- }
9433
- .pr-size-5--mobile-up {
9434
- padding-inline-end: 0.3125rem !important;
9435
- }
9436
- .pb-size-5--mobile-up {
9437
- padding-block-end: 0.3125rem !important;
9438
- }
9439
- .pl-size-5--mobile-up {
9440
- padding-inline-start: 0.3125rem !important;
9441
- }
9442
- .px-size-5--mobile-up {
9443
- padding-inline: 0.3125rem !important;
9444
- }
9445
- .py-size-5--mobile-up {
9446
- padding-block: 0.3125rem !important;
9447
- }
9448
- .gap-size-5--mobile-up {
9449
- gap: 0.3125rem !important;
9450
- }
9451
- .m-size-10--mobile-up {
9452
- margin: 0.625rem !important;
9453
- }
9454
- .mt-size-10--mobile-up {
9455
- margin-block-start: 0.625rem !important;
9456
- }
9457
- .mr-size-10--mobile-up {
9458
- margin-inline-end: 0.625rem !important;
9459
- }
9460
- .mb-size-10--mobile-up {
9461
- margin-block-end: 0.625rem !important;
9462
- }
9463
- .ml-size-10--mobile-up {
9464
- margin-inline-start: 0.625rem !important;
9465
- }
9466
- .mx-size-10--mobile-up {
9467
- margin-inline: 0.625rem !important;
9468
- }
9469
- .my-size-10--mobile-up {
9470
- margin-block: 0.625rem !important;
9471
- }
9472
- .p-size-10--mobile-up {
9473
- padding: 0.625rem !important;
9474
- }
9475
- .pt-size-10--mobile-up {
9476
- padding-block-start: 0.625rem !important;
9477
- }
9478
- .pr-size-10--mobile-up {
9479
- padding-inline-end: 0.625rem !important;
9480
- }
9481
- .pb-size-10--mobile-up {
9482
- padding-block-end: 0.625rem !important;
9483
- }
9484
- .pl-size-10--mobile-up {
9485
- padding-inline-start: 0.625rem !important;
9486
- }
9487
- .px-size-10--mobile-up {
9488
- padding-inline: 0.625rem !important;
9489
- }
9490
- .py-size-10--mobile-up {
9491
- padding-block: 0.625rem !important;
9492
- }
9493
- .gap-size-10--mobile-up {
9494
- gap: 0.625rem !important;
9495
- }
9496
- .m-size-15--mobile-up {
9497
- margin: 0.9375rem !important;
9498
- }
9499
- .mt-size-15--mobile-up {
9500
- margin-block-start: 0.9375rem !important;
9501
- }
9502
- .mr-size-15--mobile-up {
9503
- margin-inline-end: 0.9375rem !important;
9504
- }
9505
- .mb-size-15--mobile-up {
9506
- margin-block-end: 0.9375rem !important;
9507
- }
9508
- .ml-size-15--mobile-up {
9509
- margin-inline-start: 0.9375rem !important;
9510
- }
9511
- .mx-size-15--mobile-up {
9512
- margin-inline: 0.9375rem !important;
9513
- }
9514
- .my-size-15--mobile-up {
9515
- margin-block: 0.9375rem !important;
9516
- }
9517
- .p-size-15--mobile-up {
9518
- padding: 0.9375rem !important;
9519
- }
9520
- .pt-size-15--mobile-up {
9521
- padding-block-start: 0.9375rem !important;
9522
- }
9523
- .pr-size-15--mobile-up {
9524
- padding-inline-end: 0.9375rem !important;
9525
- }
9526
- .pb-size-15--mobile-up {
9527
- padding-block-end: 0.9375rem !important;
9528
- }
9529
- .pl-size-15--mobile-up {
9530
- padding-inline-start: 0.9375rem !important;
9531
- }
9532
- .px-size-15--mobile-up {
9533
- padding-inline: 0.9375rem !important;
9534
- }
9535
- .py-size-15--mobile-up {
9536
- padding-block: 0.9375rem !important;
9537
- }
9538
- .gap-size-15--mobile-up {
9539
- gap: 0.9375rem !important;
9540
- }
9541
- .m-size-20--mobile-up {
9542
- margin: 1.25rem !important;
9543
- }
9544
- .mt-size-20--mobile-up {
9545
- margin-block-start: 1.25rem !important;
9546
- }
9547
- .mr-size-20--mobile-up {
9548
- margin-inline-end: 1.25rem !important;
9549
- }
9550
- .mb-size-20--mobile-up {
9551
- margin-block-end: 1.25rem !important;
9552
- }
9553
- .ml-size-20--mobile-up {
9554
- margin-inline-start: 1.25rem !important;
9555
- }
9556
- .mx-size-20--mobile-up {
9557
- margin-inline: 1.25rem !important;
9473
+ .mx-size-20--mobile-up {
9474
+ margin-inline: 1.25rem !important;
9558
9475
  }
9559
9476
  .my-size-20--mobile-up {
9560
9477
  margin-block: 1.25rem !important;
@@ -9628,51 +9545,6 @@ button.pkt-link {
9628
9545
  .gap-size-30--mobile-up {
9629
9546
  gap: 1.875rem !important;
9630
9547
  }
9631
- .m-size-50--mobile-up {
9632
- margin: 3.125rem !important;
9633
- }
9634
- .mt-size-50--mobile-up {
9635
- margin-block-start: 3.125rem !important;
9636
- }
9637
- .mr-size-50--mobile-up {
9638
- margin-inline-end: 3.125rem !important;
9639
- }
9640
- .mb-size-50--mobile-up {
9641
- margin-block-end: 3.125rem !important;
9642
- }
9643
- .ml-size-50--mobile-up {
9644
- margin-inline-start: 3.125rem !important;
9645
- }
9646
- .mx-size-50--mobile-up {
9647
- margin-inline: 3.125rem !important;
9648
- }
9649
- .my-size-50--mobile-up {
9650
- margin-block: 3.125rem !important;
9651
- }
9652
- .p-size-50--mobile-up {
9653
- padding: 3.125rem !important;
9654
- }
9655
- .pt-size-50--mobile-up {
9656
- padding-block-start: 3.125rem !important;
9657
- }
9658
- .pr-size-50--mobile-up {
9659
- padding-inline-end: 3.125rem !important;
9660
- }
9661
- .pb-size-50--mobile-up {
9662
- padding-block-end: 3.125rem !important;
9663
- }
9664
- .pl-size-50--mobile-up {
9665
- padding-inline-start: 3.125rem !important;
9666
- }
9667
- .px-size-50--mobile-up {
9668
- padding-inline: 3.125rem !important;
9669
- }
9670
- .py-size-50--mobile-up {
9671
- padding-block: 3.125rem !important;
9672
- }
9673
- .gap-size-50--mobile-up {
9674
- gap: 3.125rem !important;
9675
- }
9676
9548
  .m-size-60--mobile-up {
9677
9549
  margin: 3.75rem !important;
9678
9550
  }
@@ -9697,26 +9569,161 @@ button.pkt-link {
9697
9569
  .p-size-60--mobile-up {
9698
9570
  padding: 3.75rem !important;
9699
9571
  }
9700
- .pt-size-60--mobile-up {
9701
- padding-block-start: 3.75rem !important;
9572
+ .pt-size-60--mobile-up {
9573
+ padding-block-start: 3.75rem !important;
9574
+ }
9575
+ .pr-size-60--mobile-up {
9576
+ padding-inline-end: 3.75rem !important;
9577
+ }
9578
+ .pb-size-60--mobile-up {
9579
+ padding-block-end: 3.75rem !important;
9580
+ }
9581
+ .pl-size-60--mobile-up {
9582
+ padding-inline-start: 3.75rem !important;
9583
+ }
9584
+ .px-size-60--mobile-up {
9585
+ padding-inline: 3.75rem !important;
9586
+ }
9587
+ .py-size-60--mobile-up {
9588
+ padding-block: 3.75rem !important;
9589
+ }
9590
+ .gap-size-60--mobile-up {
9591
+ gap: 3.75rem !important;
9592
+ }
9593
+ .m-size-5--mobile-up {
9594
+ margin: 0.3125rem !important;
9595
+ }
9596
+ .mt-size-5--mobile-up {
9597
+ margin-block-start: 0.3125rem !important;
9598
+ }
9599
+ .mr-size-5--mobile-up {
9600
+ margin-inline-end: 0.3125rem !important;
9601
+ }
9602
+ .mb-size-5--mobile-up {
9603
+ margin-block-end: 0.3125rem !important;
9604
+ }
9605
+ .ml-size-5--mobile-up {
9606
+ margin-inline-start: 0.3125rem !important;
9607
+ }
9608
+ .mx-size-5--mobile-up {
9609
+ margin-inline: 0.3125rem !important;
9610
+ }
9611
+ .my-size-5--mobile-up {
9612
+ margin-block: 0.3125rem !important;
9613
+ }
9614
+ .p-size-5--mobile-up {
9615
+ padding: 0.3125rem !important;
9616
+ }
9617
+ .pt-size-5--mobile-up {
9618
+ padding-block-start: 0.3125rem !important;
9619
+ }
9620
+ .pr-size-5--mobile-up {
9621
+ padding-inline-end: 0.3125rem !important;
9622
+ }
9623
+ .pb-size-5--mobile-up {
9624
+ padding-block-end: 0.3125rem !important;
9625
+ }
9626
+ .pl-size-5--mobile-up {
9627
+ padding-inline-start: 0.3125rem !important;
9628
+ }
9629
+ .px-size-5--mobile-up {
9630
+ padding-inline: 0.3125rem !important;
9631
+ }
9632
+ .py-size-5--mobile-up {
9633
+ padding-block: 0.3125rem !important;
9634
+ }
9635
+ .gap-size-5--mobile-up {
9636
+ gap: 0.3125rem !important;
9637
+ }
9638
+ .m-size-15--mobile-up {
9639
+ margin: 0.9375rem !important;
9640
+ }
9641
+ .mt-size-15--mobile-up {
9642
+ margin-block-start: 0.9375rem !important;
9643
+ }
9644
+ .mr-size-15--mobile-up {
9645
+ margin-inline-end: 0.9375rem !important;
9646
+ }
9647
+ .mb-size-15--mobile-up {
9648
+ margin-block-end: 0.9375rem !important;
9649
+ }
9650
+ .ml-size-15--mobile-up {
9651
+ margin-inline-start: 0.9375rem !important;
9652
+ }
9653
+ .mx-size-15--mobile-up {
9654
+ margin-inline: 0.9375rem !important;
9655
+ }
9656
+ .my-size-15--mobile-up {
9657
+ margin-block: 0.9375rem !important;
9658
+ }
9659
+ .p-size-15--mobile-up {
9660
+ padding: 0.9375rem !important;
9661
+ }
9662
+ .pt-size-15--mobile-up {
9663
+ padding-block-start: 0.9375rem !important;
9664
+ }
9665
+ .pr-size-15--mobile-up {
9666
+ padding-inline-end: 0.9375rem !important;
9667
+ }
9668
+ .pb-size-15--mobile-up {
9669
+ padding-block-end: 0.9375rem !important;
9670
+ }
9671
+ .pl-size-15--mobile-up {
9672
+ padding-inline-start: 0.9375rem !important;
9673
+ }
9674
+ .px-size-15--mobile-up {
9675
+ padding-inline: 0.9375rem !important;
9676
+ }
9677
+ .py-size-15--mobile-up {
9678
+ padding-block: 0.9375rem !important;
9679
+ }
9680
+ .gap-size-15--mobile-up {
9681
+ gap: 0.9375rem !important;
9682
+ }
9683
+ .m-size-50--mobile-up {
9684
+ margin: 3.125rem !important;
9685
+ }
9686
+ .mt-size-50--mobile-up {
9687
+ margin-block-start: 3.125rem !important;
9688
+ }
9689
+ .mr-size-50--mobile-up {
9690
+ margin-inline-end: 3.125rem !important;
9691
+ }
9692
+ .mb-size-50--mobile-up {
9693
+ margin-block-end: 3.125rem !important;
9694
+ }
9695
+ .ml-size-50--mobile-up {
9696
+ margin-inline-start: 3.125rem !important;
9697
+ }
9698
+ .mx-size-50--mobile-up {
9699
+ margin-inline: 3.125rem !important;
9700
+ }
9701
+ .my-size-50--mobile-up {
9702
+ margin-block: 3.125rem !important;
9703
+ }
9704
+ .p-size-50--mobile-up {
9705
+ padding: 3.125rem !important;
9706
+ }
9707
+ .pt-size-50--mobile-up {
9708
+ padding-block-start: 3.125rem !important;
9702
9709
  }
9703
- .pr-size-60--mobile-up {
9704
- padding-inline-end: 3.75rem !important;
9710
+ .pr-size-50--mobile-up {
9711
+ padding-inline-end: 3.125rem !important;
9705
9712
  }
9706
- .pb-size-60--mobile-up {
9707
- padding-block-end: 3.75rem !important;
9713
+ .pb-size-50--mobile-up {
9714
+ padding-block-end: 3.125rem !important;
9708
9715
  }
9709
- .pl-size-60--mobile-up {
9710
- padding-inline-start: 3.75rem !important;
9716
+ .pl-size-50--mobile-up {
9717
+ padding-inline-start: 3.125rem !important;
9711
9718
  }
9712
- .px-size-60--mobile-up {
9713
- padding-inline: 3.75rem !important;
9719
+ .px-size-50--mobile-up {
9720
+ padding-inline: 3.125rem !important;
9714
9721
  }
9715
- .py-size-60--mobile-up {
9716
- padding-block: 3.75rem !important;
9722
+ .py-size-50--mobile-up {
9723
+ padding-block: 3.125rem !important;
9717
9724
  }
9718
- .gap-size-60--mobile-up {
9719
- gap: 3.75rem !important;
9725
+ .gap-size-50--mobile-up {
9726
+ gap: 3.125rem !important;
9720
9727
  }
9721
9728
  .m-size-75--mobile-up {
9722
9729
  margin: 4.6875rem !important;
@@ -10575,6 +10582,51 @@ button.pkt-link {
10575
10582
  .gap-size-88--phablet-up {
10576
10583
  gap: 5.5rem !important;
10577
10584
  }
10585
+ .m-size-96--phablet-up {
10586
+ margin: 6rem !important;
10587
+ }
10588
+ .mt-size-96--phablet-up {
10589
+ margin-block-start: 6rem !important;
10590
+ }
10591
+ .mr-size-96--phablet-up {
10592
+ margin-inline-end: 6rem !important;
10593
+ }
10594
+ .mb-size-96--phablet-up {
10595
+ margin-block-end: 6rem !important;
10596
+ }
10597
+ .ml-size-96--phablet-up {
10598
+ margin-inline-start: 6rem !important;
10599
+ }
10600
+ .mx-size-96--phablet-up {
10601
+ margin-inline: 6rem !important;
10602
+ }
10603
+ .my-size-96--phablet-up {
10604
+ margin-block: 6rem !important;
10605
+ }
10606
+ .p-size-96--phablet-up {
10607
+ padding: 6rem !important;
10608
+ }
10609
+ .pt-size-96--phablet-up {
10610
+ padding-block-start: 6rem !important;
10611
+ }
10612
+ .pr-size-96--phablet-up {
10613
+ padding-inline-end: 6rem !important;
10614
+ }
10615
+ .pb-size-96--phablet-up {
10616
+ padding-block-end: 6rem !important;
10617
+ }
10618
+ .pl-size-96--phablet-up {
10619
+ padding-inline-start: 6rem !important;
10620
+ }
10621
+ .px-size-96--phablet-up {
10622
+ padding-inline: 6rem !important;
10623
+ }
10624
+ .py-size-96--phablet-up {
10625
+ padding-block: 6rem !important;
10626
+ }
10627
+ .gap-size-96--phablet-up {
10628
+ gap: 6rem !important;
10629
+ }
10578
10630
  .m-size-104--phablet-up {
10579
10631
  margin: 6.5rem !important;
10580
10632
  }
@@ -10665,50 +10717,185 @@ button.pkt-link {
10665
10717
  .gap-size-128--phablet-up {
10666
10718
  gap: 8rem !important;
10667
10719
  }
10668
- .m-size-148--phablet-up {
10669
- margin: 9.25rem !important;
10720
+ .m-size-10--phablet-up {
10721
+ margin: 0.625rem !important;
10722
+ }
10723
+ .mt-size-10--phablet-up {
10724
+ margin-block-start: 0.625rem !important;
10725
+ }
10726
+ .mr-size-10--phablet-up {
10727
+ margin-inline-end: 0.625rem !important;
10728
+ }
10729
+ .mb-size-10--phablet-up {
10730
+ margin-block-end: 0.625rem !important;
10731
+ }
10732
+ .ml-size-10--phablet-up {
10733
+ margin-inline-start: 0.625rem !important;
10734
+ }
10735
+ .mx-size-10--phablet-up {
10736
+ margin-inline: 0.625rem !important;
10737
+ }
10738
+ .my-size-10--phablet-up {
10739
+ margin-block: 0.625rem !important;
10740
+ }
10741
+ .p-size-10--phablet-up {
10742
+ padding: 0.625rem !important;
10743
+ }
10744
+ .pt-size-10--phablet-up {
10745
+ padding-block-start: 0.625rem !important;
10746
+ }
10747
+ .pr-size-10--phablet-up {
10748
+ padding-inline-end: 0.625rem !important;
10749
+ }
10750
+ .pb-size-10--phablet-up {
10751
+ padding-block-end: 0.625rem !important;
10752
+ }
10753
+ .pl-size-10--phablet-up {
10754
+ padding-inline-start: 0.625rem !important;
10755
+ }
10756
+ .px-size-10--phablet-up {
10757
+ padding-inline: 0.625rem !important;
10758
+ }
10759
+ .py-size-10--phablet-up {
10760
+ padding-block: 0.625rem !important;
10761
+ }
10762
+ .gap-size-10--phablet-up {
10763
+ gap: 0.625rem !important;
10764
+ }
10765
+ .m-size-20--phablet-up {
10766
+ margin: 1.25rem !important;
10767
+ }
10768
+ .mt-size-20--phablet-up {
10769
+ margin-block-start: 1.25rem !important;
10770
+ }
10771
+ .mr-size-20--phablet-up {
10772
+ margin-inline-end: 1.25rem !important;
10773
+ }
10774
+ .mb-size-20--phablet-up {
10775
+ margin-block-end: 1.25rem !important;
10776
+ }
10777
+ .ml-size-20--phablet-up {
10778
+ margin-inline-start: 1.25rem !important;
10779
+ }
10780
+ .mx-size-20--phablet-up {
10781
+ margin-inline: 1.25rem !important;
10782
+ }
10783
+ .my-size-20--phablet-up {
10784
+ margin-block: 1.25rem !important;
10785
+ }
10786
+ .p-size-20--phablet-up {
10787
+ padding: 1.25rem !important;
10788
+ }
10789
+ .pt-size-20--phablet-up {
10790
+ padding-block-start: 1.25rem !important;
10791
+ }
10792
+ .pr-size-20--phablet-up {
10793
+ padding-inline-end: 1.25rem !important;
10794
+ }
10795
+ .pb-size-20--phablet-up {
10796
+ padding-block-end: 1.25rem !important;
10797
+ }
10798
+ .pl-size-20--phablet-up {
10799
+ padding-inline-start: 1.25rem !important;
10800
+ }
10801
+ .px-size-20--phablet-up {
10802
+ padding-inline: 1.25rem !important;
10803
+ }
10804
+ .py-size-20--phablet-up {
10805
+ padding-block: 1.25rem !important;
10806
+ }
10807
+ .gap-size-20--phablet-up {
10808
+ gap: 1.25rem !important;
10809
+ }
10810
+ .m-size-30--phablet-up {
10811
+ margin: 1.875rem !important;
10812
+ }
10813
+ .mt-size-30--phablet-up {
10814
+ margin-block-start: 1.875rem !important;
10815
+ }
10816
+ .mr-size-30--phablet-up {
10817
+ margin-inline-end: 1.875rem !important;
10818
+ }
10819
+ .mb-size-30--phablet-up {
10820
+ margin-block-end: 1.875rem !important;
10821
+ }
10822
+ .ml-size-30--phablet-up {
10823
+ margin-inline-start: 1.875rem !important;
10824
+ }
10825
+ .mx-size-30--phablet-up {
10826
+ margin-inline: 1.875rem !important;
10827
+ }
10828
+ .my-size-30--phablet-up {
10829
+ margin-block: 1.875rem !important;
10830
+ }
10831
+ .p-size-30--phablet-up {
10832
+ padding: 1.875rem !important;
10833
+ }
10834
+ .pt-size-30--phablet-up {
10835
+ padding-block-start: 1.875rem !important;
10836
+ }
10837
+ .pr-size-30--phablet-up {
10838
+ padding-inline-end: 1.875rem !important;
10839
+ }
10840
+ .pb-size-30--phablet-up {
10841
+ padding-block-end: 1.875rem !important;
10842
+ }
10843
+ .pl-size-30--phablet-up {
10844
+ padding-inline-start: 1.875rem !important;
10845
+ }
10846
+ .px-size-30--phablet-up {
10847
+ padding-inline: 1.875rem !important;
10848
+ }
10849
+ .py-size-30--phablet-up {
10850
+ padding-block: 1.875rem !important;
10851
+ }
10852
+ .gap-size-30--phablet-up {
10853
+ gap: 1.875rem !important;
10854
+ }
10855
+ .m-size-60--phablet-up {
10856
+ margin: 3.75rem !important;
10670
10857
  }
10671
- .mt-size-148--phablet-up {
10672
- margin-block-start: 9.25rem !important;
10858
+ .mt-size-60--phablet-up {
10859
+ margin-block-start: 3.75rem !important;
10673
10860
  }
10674
- .mr-size-148--phablet-up {
10675
- margin-inline-end: 9.25rem !important;
10861
+ .mr-size-60--phablet-up {
10862
+ margin-inline-end: 3.75rem !important;
10676
10863
  }
10677
- .mb-size-148--phablet-up {
10678
- margin-block-end: 9.25rem !important;
10864
+ .mb-size-60--phablet-up {
10865
+ margin-block-end: 3.75rem !important;
10679
10866
  }
10680
- .ml-size-148--phablet-up {
10681
- margin-inline-start: 9.25rem !important;
10867
+ .ml-size-60--phablet-up {
10868
+ margin-inline-start: 3.75rem !important;
10682
10869
  }
10683
- .mx-size-148--phablet-up {
10684
- margin-inline: 9.25rem !important;
10870
+ .mx-size-60--phablet-up {
10871
+ margin-inline: 3.75rem !important;
10685
10872
  }
10686
- .my-size-148--phablet-up {
10687
- margin-block: 9.25rem !important;
10873
+ .my-size-60--phablet-up {
10874
+ margin-block: 3.75rem !important;
10688
10875
  }
10689
- .p-size-148--phablet-up {
10690
- padding: 9.25rem !important;
10876
+ .p-size-60--phablet-up {
10877
+ padding: 3.75rem !important;
10691
10878
  }
10692
- .pt-size-148--phablet-up {
10693
- padding-block-start: 9.25rem !important;
10879
+ .pt-size-60--phablet-up {
10880
+ padding-block-start: 3.75rem !important;
10694
10881
  }
10695
- .pr-size-148--phablet-up {
10696
- padding-inline-end: 9.25rem !important;
10882
+ .pr-size-60--phablet-up {
10883
+ padding-inline-end: 3.75rem !important;
10697
10884
  }
10698
- .pb-size-148--phablet-up {
10699
- padding-block-end: 9.25rem !important;
10885
+ .pb-size-60--phablet-up {
10886
+ padding-block-end: 3.75rem !important;
10700
10887
  }
10701
- .pl-size-148--phablet-up {
10702
- padding-inline-start: 9.25rem !important;
10888
+ .pl-size-60--phablet-up {
10889
+ padding-inline-start: 3.75rem !important;
10703
10890
  }
10704
- .px-size-148--phablet-up {
10705
- padding-inline: 9.25rem !important;
10891
+ .px-size-60--phablet-up {
10892
+ padding-inline: 3.75rem !important;
10706
10893
  }
10707
- .py-size-148--phablet-up {
10708
- padding-block: 9.25rem !important;
10894
+ .py-size-60--phablet-up {
10895
+ padding-block: 3.75rem !important;
10709
10896
  }
10710
- .gap-size-148--phablet-up {
10711
- gap: 9.25rem !important;
10897
+ .gap-size-60--phablet-up {
10898
+ gap: 3.75rem !important;
10712
10899
  }
10713
10900
  .m-size-5--phablet-up {
10714
10901
  margin: 0.3125rem !important;
@@ -10753,52 +10940,7 @@ button.pkt-link {
10753
10940
  padding-block: 0.3125rem !important;
10754
10941
  }
10755
10942
  .gap-size-5--phablet-up {
10756
- gap: 0.3125rem !important;
10757
- }
10758
- .m-size-10--phablet-up {
10759
- margin: 0.625rem !important;
10760
- }
10761
- .mt-size-10--phablet-up {
10762
- margin-block-start: 0.625rem !important;
10763
- }
10764
- .mr-size-10--phablet-up {
10765
- margin-inline-end: 0.625rem !important;
10766
- }
10767
- .mb-size-10--phablet-up {
10768
- margin-block-end: 0.625rem !important;
10769
- }
10770
- .ml-size-10--phablet-up {
10771
- margin-inline-start: 0.625rem !important;
10772
- }
10773
- .mx-size-10--phablet-up {
10774
- margin-inline: 0.625rem !important;
10775
- }
10776
- .my-size-10--phablet-up {
10777
- margin-block: 0.625rem !important;
10778
- }
10779
- .p-size-10--phablet-up {
10780
- padding: 0.625rem !important;
10781
- }
10782
- .pt-size-10--phablet-up {
10783
- padding-block-start: 0.625rem !important;
10784
- }
10785
- .pr-size-10--phablet-up {
10786
- padding-inline-end: 0.625rem !important;
10787
- }
10788
- .pb-size-10--phablet-up {
10789
- padding-block-end: 0.625rem !important;
10790
- }
10791
- .pl-size-10--phablet-up {
10792
- padding-inline-start: 0.625rem !important;
10793
- }
10794
- .px-size-10--phablet-up {
10795
- padding-inline: 0.625rem !important;
10796
- }
10797
- .py-size-10--phablet-up {
10798
- padding-block: 0.625rem !important;
10799
- }
10800
- .gap-size-10--phablet-up {
10801
- gap: 0.625rem !important;
10943
+ gap: 0.3125rem !important;
10802
10944
  }
10803
10945
  .m-size-15--phablet-up {
10804
10946
  margin: 0.9375rem !important;
@@ -10845,96 +10987,6 @@ button.pkt-link {
10845
10987
  .gap-size-15--phablet-up {
10846
10988
  gap: 0.9375rem !important;
10847
10989
  }
10848
- .m-size-20--phablet-up {
10849
- margin: 1.25rem !important;
10850
- }
10851
- .mt-size-20--phablet-up {
10852
- margin-block-start: 1.25rem !important;
10853
- }
10854
- .mr-size-20--phablet-up {
10855
- margin-inline-end: 1.25rem !important;
10856
- }
10857
- .mb-size-20--phablet-up {
10858
- margin-block-end: 1.25rem !important;
10859
- }
10860
- .ml-size-20--phablet-up {
10861
- margin-inline-start: 1.25rem !important;
10862
- }
10863
- .mx-size-20--phablet-up {
10864
- margin-inline: 1.25rem !important;
10865
- }
10866
- .my-size-20--phablet-up {
10867
- margin-block: 1.25rem !important;
10868
- }
10869
- .p-size-20--phablet-up {
10870
- padding: 1.25rem !important;
10871
- }
10872
- .pt-size-20--phablet-up {
10873
- padding-block-start: 1.25rem !important;
10874
- }
10875
- .pr-size-20--phablet-up {
10876
- padding-inline-end: 1.25rem !important;
10877
- }
10878
- .pb-size-20--phablet-up {
10879
- padding-block-end: 1.25rem !important;
10880
- }
10881
- .pl-size-20--phablet-up {
10882
- padding-inline-start: 1.25rem !important;
10883
- }
10884
- .px-size-20--phablet-up {
10885
- padding-inline: 1.25rem !important;
10886
- }
10887
- .py-size-20--phablet-up {
10888
- padding-block: 1.25rem !important;
10889
- }
10890
- .gap-size-20--phablet-up {
10891
- gap: 1.25rem !important;
10892
- }
10893
- .m-size-30--phablet-up {
10894
- margin: 1.875rem !important;
10895
- }
10896
- .mt-size-30--phablet-up {
10897
- margin-block-start: 1.875rem !important;
10898
- }
10899
- .mr-size-30--phablet-up {
10900
- margin-inline-end: 1.875rem !important;
10901
- }
10902
- .mb-size-30--phablet-up {
10903
- margin-block-end: 1.875rem !important;
10904
- }
10905
- .ml-size-30--phablet-up {
10906
- margin-inline-start: 1.875rem !important;
10907
- }
10908
- .mx-size-30--phablet-up {
10909
- margin-inline: 1.875rem !important;
10910
- }
10911
- .my-size-30--phablet-up {
10912
- margin-block: 1.875rem !important;
10913
- }
10914
- .p-size-30--phablet-up {
10915
- padding: 1.875rem !important;
10916
- }
10917
- .pt-size-30--phablet-up {
10918
- padding-block-start: 1.875rem !important;
10919
- }
10920
- .pr-size-30--phablet-up {
10921
- padding-inline-end: 1.875rem !important;
10922
- }
10923
- .pb-size-30--phablet-up {
10924
- padding-block-end: 1.875rem !important;
10925
- }
10926
- .pl-size-30--phablet-up {
10927
- padding-inline-start: 1.875rem !important;
10928
- }
10929
- .px-size-30--phablet-up {
10930
- padding-inline: 1.875rem !important;
10931
- }
10932
- .py-size-30--phablet-up {
10933
- padding-block: 1.875rem !important;
10934
- }
10935
- .gap-size-30--phablet-up {
10936
- gap: 1.875rem !important;
10937
- }
10938
10990
  .m-size-50--phablet-up {
10939
10991
  margin: 3.125rem !important;
10940
10992
  }
@@ -10980,51 +11032,6 @@ button.pkt-link {
10980
11032
  .gap-size-50--phablet-up {
10981
11033
  gap: 3.125rem !important;
10982
11034
  }
10983
- .m-size-60--phablet-up {
10984
- margin: 3.75rem !important;
10985
- }
10986
- .mt-size-60--phablet-up {
10987
- margin-block-start: 3.75rem !important;
10988
- }
10989
- .mr-size-60--phablet-up {
10990
- margin-inline-end: 3.75rem !important;
10991
- }
10992
- .mb-size-60--phablet-up {
10993
- margin-block-end: 3.75rem !important;
10994
- }
10995
- .ml-size-60--phablet-up {
10996
- margin-inline-start: 3.75rem !important;
10997
- }
10998
- .mx-size-60--phablet-up {
10999
- margin-inline: 3.75rem !important;
11000
- }
11001
- .my-size-60--phablet-up {
11002
- margin-block: 3.75rem !important;
11003
- }
11004
- .p-size-60--phablet-up {
11005
- padding: 3.75rem !important;
11006
- }
11007
- .pt-size-60--phablet-up {
11008
- padding-block-start: 3.75rem !important;
11009
- }
11010
- .pr-size-60--phablet-up {
11011
- padding-inline-end: 3.75rem !important;
11012
- }
11013
- .pb-size-60--phablet-up {
11014
- padding-block-end: 3.75rem !important;
11015
- }
11016
- .pl-size-60--phablet-up {
11017
- padding-inline-start: 3.75rem !important;
11018
- }
11019
- .px-size-60--phablet-up {
11020
- padding-inline: 3.75rem !important;
11021
- }
11022
- .py-size-60--phablet-up {
11023
- padding-block: 3.75rem !important;
11024
- }
11025
- .gap-size-60--phablet-up {
11026
- gap: 3.75rem !important;
11027
- }
11028
11035
  .m-size-75--phablet-up {
11029
11036
  margin: 4.6875rem !important;
11030
11037
  }
@@ -11882,6 +11889,51 @@ button.pkt-link {
11882
11889
  .gap-size-88--tablet-up {
11883
11890
  gap: 5.5rem !important;
11884
11891
  }
11892
+ .m-size-96--tablet-up {
11893
+ margin: 6rem !important;
11894
+ }
11895
+ .mt-size-96--tablet-up {
11896
+ margin-block-start: 6rem !important;
11897
+ }
11898
+ .mr-size-96--tablet-up {
11899
+ margin-inline-end: 6rem !important;
11900
+ }
11901
+ .mb-size-96--tablet-up {
11902
+ margin-block-end: 6rem !important;
11903
+ }
11904
+ .ml-size-96--tablet-up {
11905
+ margin-inline-start: 6rem !important;
11906
+ }
11907
+ .mx-size-96--tablet-up {
11908
+ margin-inline: 6rem !important;
11909
+ }
11910
+ .my-size-96--tablet-up {
11911
+ margin-block: 6rem !important;
11912
+ }
11913
+ .p-size-96--tablet-up {
11914
+ padding: 6rem !important;
11915
+ }
11916
+ .pt-size-96--tablet-up {
11917
+ padding-block-start: 6rem !important;
11918
+ }
11919
+ .pr-size-96--tablet-up {
11920
+ padding-inline-end: 6rem !important;
11921
+ }
11922
+ .pb-size-96--tablet-up {
11923
+ padding-block-end: 6rem !important;
11924
+ }
11925
+ .pl-size-96--tablet-up {
11926
+ padding-inline-start: 6rem !important;
11927
+ }
11928
+ .px-size-96--tablet-up {
11929
+ padding-inline: 6rem !important;
11930
+ }
11931
+ .py-size-96--tablet-up {
11932
+ padding-block: 6rem !important;
11933
+ }
11934
+ .gap-size-96--tablet-up {
11935
+ gap: 6rem !important;
11936
+ }
11885
11937
  .m-size-104--tablet-up {
11886
11938
  margin: 6.5rem !important;
11887
11939
  }
@@ -11972,96 +12024,6 @@ button.pkt-link {
11972
12024
  .gap-size-128--tablet-up {
11973
12025
  gap: 8rem !important;
11974
12026
  }
11975
- .m-size-148--tablet-up {
11976
- margin: 9.25rem !important;
11977
- }
11978
- .mt-size-148--tablet-up {
11979
- margin-block-start: 9.25rem !important;
11980
- }
11981
- .mr-size-148--tablet-up {
11982
- margin-inline-end: 9.25rem !important;
11983
- }
11984
- .mb-size-148--tablet-up {
11985
- margin-block-end: 9.25rem !important;
11986
- }
11987
- .ml-size-148--tablet-up {
11988
- margin-inline-start: 9.25rem !important;
11989
- }
11990
- .mx-size-148--tablet-up {
11991
- margin-inline: 9.25rem !important;
11992
- }
11993
- .my-size-148--tablet-up {
11994
- margin-block: 9.25rem !important;
11995
- }
11996
- .p-size-148--tablet-up {
11997
- padding: 9.25rem !important;
11998
- }
11999
- .pt-size-148--tablet-up {
12000
- padding-block-start: 9.25rem !important;
12001
- }
12002
- .pr-size-148--tablet-up {
12003
- padding-inline-end: 9.25rem !important;
12004
- }
12005
- .pb-size-148--tablet-up {
12006
- padding-block-end: 9.25rem !important;
12007
- }
12008
- .pl-size-148--tablet-up {
12009
- padding-inline-start: 9.25rem !important;
12010
- }
12011
- .px-size-148--tablet-up {
12012
- padding-inline: 9.25rem !important;
12013
- }
12014
- .py-size-148--tablet-up {
12015
- padding-block: 9.25rem !important;
12016
- }
12017
- .gap-size-148--tablet-up {
12018
- gap: 9.25rem !important;
12019
- }
12020
- .m-size-5--tablet-up {
12021
- margin: 0.3125rem !important;
12022
- }
12023
- .mt-size-5--tablet-up {
12024
- margin-block-start: 0.3125rem !important;
12025
- }
12026
- .mr-size-5--tablet-up {
12027
- margin-inline-end: 0.3125rem !important;
12028
- }
12029
- .mb-size-5--tablet-up {
12030
- margin-block-end: 0.3125rem !important;
12031
- }
12032
- .ml-size-5--tablet-up {
12033
- margin-inline-start: 0.3125rem !important;
12034
- }
12035
- .mx-size-5--tablet-up {
12036
- margin-inline: 0.3125rem !important;
12037
- }
12038
- .my-size-5--tablet-up {
12039
- margin-block: 0.3125rem !important;
12040
- }
12041
- .p-size-5--tablet-up {
12042
- padding: 0.3125rem !important;
12043
- }
12044
- .pt-size-5--tablet-up {
12045
- padding-block-start: 0.3125rem !important;
12046
- }
12047
- .pr-size-5--tablet-up {
12048
- padding-inline-end: 0.3125rem !important;
12049
- }
12050
- .pb-size-5--tablet-up {
12051
- padding-block-end: 0.3125rem !important;
12052
- }
12053
- .pl-size-5--tablet-up {
12054
- padding-inline-start: 0.3125rem !important;
12055
- }
12056
- .px-size-5--tablet-up {
12057
- padding-inline: 0.3125rem !important;
12058
- }
12059
- .py-size-5--tablet-up {
12060
- padding-block: 0.3125rem !important;
12061
- }
12062
- .gap-size-5--tablet-up {
12063
- gap: 0.3125rem !important;
12064
- }
12065
12027
  .m-size-10--tablet-up {
12066
12028
  margin: 0.625rem !important;
12067
12029
  }
@@ -12107,51 +12069,6 @@ button.pkt-link {
12107
12069
  .gap-size-10--tablet-up {
12108
12070
  gap: 0.625rem !important;
12109
12071
  }
12110
- .m-size-15--tablet-up {
12111
- margin: 0.9375rem !important;
12112
- }
12113
- .mt-size-15--tablet-up {
12114
- margin-block-start: 0.9375rem !important;
12115
- }
12116
- .mr-size-15--tablet-up {
12117
- margin-inline-end: 0.9375rem !important;
12118
- }
12119
- .mb-size-15--tablet-up {
12120
- margin-block-end: 0.9375rem !important;
12121
- }
12122
- .ml-size-15--tablet-up {
12123
- margin-inline-start: 0.9375rem !important;
12124
- }
12125
- .mx-size-15--tablet-up {
12126
- margin-inline: 0.9375rem !important;
12127
- }
12128
- .my-size-15--tablet-up {
12129
- margin-block: 0.9375rem !important;
12130
- }
12131
- .p-size-15--tablet-up {
12132
- padding: 0.9375rem !important;
12133
- }
12134
- .pt-size-15--tablet-up {
12135
- padding-block-start: 0.9375rem !important;
12136
- }
12137
- .pr-size-15--tablet-up {
12138
- padding-inline-end: 0.9375rem !important;
12139
- }
12140
- .pb-size-15--tablet-up {
12141
- padding-block-end: 0.9375rem !important;
12142
- }
12143
- .pl-size-15--tablet-up {
12144
- padding-inline-start: 0.9375rem !important;
12145
- }
12146
- .px-size-15--tablet-up {
12147
- padding-inline: 0.9375rem !important;
12148
- }
12149
- .py-size-15--tablet-up {
12150
- padding-block: 0.9375rem !important;
12151
- }
12152
- .gap-size-15--tablet-up {
12153
- gap: 0.9375rem !important;
12154
- }
12155
12072
  .m-size-20--tablet-up {
12156
12073
  margin: 1.25rem !important;
12157
12074
  }
@@ -12242,51 +12159,6 @@ button.pkt-link {
12242
12159
  .gap-size-30--tablet-up {
12243
12160
  gap: 1.875rem !important;
12244
12161
  }
12245
- .m-size-50--tablet-up {
12246
- margin: 3.125rem !important;
12247
- }
12248
- .mt-size-50--tablet-up {
12249
- margin-block-start: 3.125rem !important;
12250
- }
12251
- .mr-size-50--tablet-up {
12252
- margin-inline-end: 3.125rem !important;
12253
- }
12254
- .mb-size-50--tablet-up {
12255
- margin-block-end: 3.125rem !important;
12256
- }
12257
- .ml-size-50--tablet-up {
12258
- margin-inline-start: 3.125rem !important;
12259
- }
12260
- .mx-size-50--tablet-up {
12261
- margin-inline: 3.125rem !important;
12262
- }
12263
- .my-size-50--tablet-up {
12264
- margin-block: 3.125rem !important;
12265
- }
12266
- .p-size-50--tablet-up {
12267
- padding: 3.125rem !important;
12268
- }
12269
- .pt-size-50--tablet-up {
12270
- padding-block-start: 3.125rem !important;
12271
- }
12272
- .pr-size-50--tablet-up {
12273
- padding-inline-end: 3.125rem !important;
12274
- }
12275
- .pb-size-50--tablet-up {
12276
- padding-block-end: 3.125rem !important;
12277
- }
12278
- .pl-size-50--tablet-up {
12279
- padding-inline-start: 3.125rem !important;
12280
- }
12281
- .px-size-50--tablet-up {
12282
- padding-inline: 3.125rem !important;
12283
- }
12284
- .py-size-50--tablet-up {
12285
- padding-block: 3.125rem !important;
12286
- }
12287
- .gap-size-50--tablet-up {
12288
- gap: 3.125rem !important;
12289
- }
12290
12162
  .m-size-60--tablet-up {
12291
12163
  margin: 3.75rem !important;
12292
12164
  }
@@ -12332,6 +12204,141 @@ button.pkt-link {
12332
12204
  .gap-size-60--tablet-up {
12333
12205
  gap: 3.75rem !important;
12334
12206
  }
12207
+ .m-size-5--tablet-up {
12208
+ margin: 0.3125rem !important;
12209
+ }
12210
+ .mt-size-5--tablet-up {
12211
+ margin-block-start: 0.3125rem !important;
12212
+ }
12213
+ .mr-size-5--tablet-up {
12214
+ margin-inline-end: 0.3125rem !important;
12215
+ }
12216
+ .mb-size-5--tablet-up {
12217
+ margin-block-end: 0.3125rem !important;
12218
+ }
12219
+ .ml-size-5--tablet-up {
12220
+ margin-inline-start: 0.3125rem !important;
12221
+ }
12222
+ .mx-size-5--tablet-up {
12223
+ margin-inline: 0.3125rem !important;
12224
+ }
12225
+ .my-size-5--tablet-up {
12226
+ margin-block: 0.3125rem !important;
12227
+ }
12228
+ .p-size-5--tablet-up {
12229
+ padding: 0.3125rem !important;
12230
+ }
12231
+ .pt-size-5--tablet-up {
12232
+ padding-block-start: 0.3125rem !important;
12233
+ }
12234
+ .pr-size-5--tablet-up {
12235
+ padding-inline-end: 0.3125rem !important;
12236
+ }
12237
+ .pb-size-5--tablet-up {
12238
+ padding-block-end: 0.3125rem !important;
12239
+ }
12240
+ .pl-size-5--tablet-up {
12241
+ padding-inline-start: 0.3125rem !important;
12242
+ }
12243
+ .px-size-5--tablet-up {
12244
+ padding-inline: 0.3125rem !important;
12245
+ }
12246
+ .py-size-5--tablet-up {
12247
+ padding-block: 0.3125rem !important;
12248
+ }
12249
+ .gap-size-5--tablet-up {
12250
+ gap: 0.3125rem !important;
12251
+ }
12252
+ .m-size-15--tablet-up {
12253
+ margin: 0.9375rem !important;
12254
+ }
12255
+ .mt-size-15--tablet-up {
12256
+ margin-block-start: 0.9375rem !important;
12257
+ }
12258
+ .mr-size-15--tablet-up {
12259
+ margin-inline-end: 0.9375rem !important;
12260
+ }
12261
+ .mb-size-15--tablet-up {
12262
+ margin-block-end: 0.9375rem !important;
12263
+ }
12264
+ .ml-size-15--tablet-up {
12265
+ margin-inline-start: 0.9375rem !important;
12266
+ }
12267
+ .mx-size-15--tablet-up {
12268
+ margin-inline: 0.9375rem !important;
12269
+ }
12270
+ .my-size-15--tablet-up {
12271
+ margin-block: 0.9375rem !important;
12272
+ }
12273
+ .p-size-15--tablet-up {
12274
+ padding: 0.9375rem !important;
12275
+ }
12276
+ .pt-size-15--tablet-up {
12277
+ padding-block-start: 0.9375rem !important;
12278
+ }
12279
+ .pr-size-15--tablet-up {
12280
+ padding-inline-end: 0.9375rem !important;
12281
+ }
12282
+ .pb-size-15--tablet-up {
12283
+ padding-block-end: 0.9375rem !important;
12284
+ }
12285
+ .pl-size-15--tablet-up {
12286
+ padding-inline-start: 0.9375rem !important;
12287
+ }
12288
+ .px-size-15--tablet-up {
12289
+ padding-inline: 0.9375rem !important;
12290
+ }
12291
+ .py-size-15--tablet-up {
12292
+ padding-block: 0.9375rem !important;
12293
+ }
12294
+ .gap-size-15--tablet-up {
12295
+ gap: 0.9375rem !important;
12296
+ }
12297
+ .m-size-50--tablet-up {
12298
+ margin: 3.125rem !important;
12299
+ }
12300
+ .mt-size-50--tablet-up {
12301
+ margin-block-start: 3.125rem !important;
12302
+ }
12303
+ .mr-size-50--tablet-up {
12304
+ margin-inline-end: 3.125rem !important;
12305
+ }
12306
+ .mb-size-50--tablet-up {
12307
+ margin-block-end: 3.125rem !important;
12308
+ }
12309
+ .ml-size-50--tablet-up {
12310
+ margin-inline-start: 3.125rem !important;
12311
+ }
12312
+ .mx-size-50--tablet-up {
12313
+ margin-inline: 3.125rem !important;
12314
+ }
12315
+ .my-size-50--tablet-up {
12316
+ margin-block: 3.125rem !important;
12317
+ }
12318
+ .p-size-50--tablet-up {
12319
+ padding: 3.125rem !important;
12320
+ }
12321
+ .pt-size-50--tablet-up {
12322
+ padding-block-start: 3.125rem !important;
12323
+ }
12324
+ .pr-size-50--tablet-up {
12325
+ padding-inline-end: 3.125rem !important;
12326
+ }
12327
+ .pb-size-50--tablet-up {
12328
+ padding-block-end: 3.125rem !important;
12329
+ }
12330
+ .pl-size-50--tablet-up {
12331
+ padding-inline-start: 3.125rem !important;
12332
+ }
12333
+ .px-size-50--tablet-up {
12334
+ padding-inline: 3.125rem !important;
12335
+ }
12336
+ .py-size-50--tablet-up {
12337
+ padding-block: 3.125rem !important;
12338
+ }
12339
+ .gap-size-50--tablet-up {
12340
+ gap: 3.125rem !important;
12341
+ }
12335
12342
  .m-size-75--tablet-up {
12336
12343
  margin: 4.6875rem !important;
12337
12344
  }
@@ -13189,6 +13196,51 @@ button.pkt-link {
13189
13196
  .gap-size-88--tablet-big-up {
13190
13197
  gap: 5.5rem !important;
13191
13198
  }
13199
+ .m-size-96--tablet-big-up {
13200
+ margin: 6rem !important;
13201
+ }
13202
+ .mt-size-96--tablet-big-up {
13203
+ margin-block-start: 6rem !important;
13204
+ }
13205
+ .mr-size-96--tablet-big-up {
13206
+ margin-inline-end: 6rem !important;
13207
+ }
13208
+ .mb-size-96--tablet-big-up {
13209
+ margin-block-end: 6rem !important;
13210
+ }
13211
+ .ml-size-96--tablet-big-up {
13212
+ margin-inline-start: 6rem !important;
13213
+ }
13214
+ .mx-size-96--tablet-big-up {
13215
+ margin-inline: 6rem !important;
13216
+ }
13217
+ .my-size-96--tablet-big-up {
13218
+ margin-block: 6rem !important;
13219
+ }
13220
+ .p-size-96--tablet-big-up {
13221
+ padding: 6rem !important;
13222
+ }
13223
+ .pt-size-96--tablet-big-up {
13224
+ padding-block-start: 6rem !important;
13225
+ }
13226
+ .pr-size-96--tablet-big-up {
13227
+ padding-inline-end: 6rem !important;
13228
+ }
13229
+ .pb-size-96--tablet-big-up {
13230
+ padding-block-end: 6rem !important;
13231
+ }
13232
+ .pl-size-96--tablet-big-up {
13233
+ padding-inline-start: 6rem !important;
13234
+ }
13235
+ .px-size-96--tablet-big-up {
13236
+ padding-inline: 6rem !important;
13237
+ }
13238
+ .py-size-96--tablet-big-up {
13239
+ padding-block: 6rem !important;
13240
+ }
13241
+ .gap-size-96--tablet-big-up {
13242
+ gap: 6rem !important;
13243
+ }
13192
13244
  .m-size-104--tablet-big-up {
13193
13245
  margin: 6.5rem !important;
13194
13246
  }
@@ -13244,130 +13296,40 @@ button.pkt-link {
13244
13296
  margin-inline-end: 8rem !important;
13245
13297
  }
13246
13298
  .mb-size-128--tablet-big-up {
13247
- margin-block-end: 8rem !important;
13248
- }
13249
- .ml-size-128--tablet-big-up {
13250
- margin-inline-start: 8rem !important;
13251
- }
13252
- .mx-size-128--tablet-big-up {
13253
- margin-inline: 8rem !important;
13254
- }
13255
- .my-size-128--tablet-big-up {
13256
- margin-block: 8rem !important;
13257
- }
13258
- .p-size-128--tablet-big-up {
13259
- padding: 8rem !important;
13260
- }
13261
- .pt-size-128--tablet-big-up {
13262
- padding-block-start: 8rem !important;
13263
- }
13264
- .pr-size-128--tablet-big-up {
13265
- padding-inline-end: 8rem !important;
13266
- }
13267
- .pb-size-128--tablet-big-up {
13268
- padding-block-end: 8rem !important;
13269
- }
13270
- .pl-size-128--tablet-big-up {
13271
- padding-inline-start: 8rem !important;
13272
- }
13273
- .px-size-128--tablet-big-up {
13274
- padding-inline: 8rem !important;
13275
- }
13276
- .py-size-128--tablet-big-up {
13277
- padding-block: 8rem !important;
13278
- }
13279
- .gap-size-128--tablet-big-up {
13280
- gap: 8rem !important;
13281
- }
13282
- .m-size-148--tablet-big-up {
13283
- margin: 9.25rem !important;
13284
- }
13285
- .mt-size-148--tablet-big-up {
13286
- margin-block-start: 9.25rem !important;
13287
- }
13288
- .mr-size-148--tablet-big-up {
13289
- margin-inline-end: 9.25rem !important;
13290
- }
13291
- .mb-size-148--tablet-big-up {
13292
- margin-block-end: 9.25rem !important;
13293
- }
13294
- .ml-size-148--tablet-big-up {
13295
- margin-inline-start: 9.25rem !important;
13296
- }
13297
- .mx-size-148--tablet-big-up {
13298
- margin-inline: 9.25rem !important;
13299
- }
13300
- .my-size-148--tablet-big-up {
13301
- margin-block: 9.25rem !important;
13302
- }
13303
- .p-size-148--tablet-big-up {
13304
- padding: 9.25rem !important;
13305
- }
13306
- .pt-size-148--tablet-big-up {
13307
- padding-block-start: 9.25rem !important;
13308
- }
13309
- .pr-size-148--tablet-big-up {
13310
- padding-inline-end: 9.25rem !important;
13311
- }
13312
- .pb-size-148--tablet-big-up {
13313
- padding-block-end: 9.25rem !important;
13314
- }
13315
- .pl-size-148--tablet-big-up {
13316
- padding-inline-start: 9.25rem !important;
13317
- }
13318
- .px-size-148--tablet-big-up {
13319
- padding-inline: 9.25rem !important;
13320
- }
13321
- .py-size-148--tablet-big-up {
13322
- padding-block: 9.25rem !important;
13323
- }
13324
- .gap-size-148--tablet-big-up {
13325
- gap: 9.25rem !important;
13326
- }
13327
- .m-size-5--tablet-big-up {
13328
- margin: 0.3125rem !important;
13329
- }
13330
- .mt-size-5--tablet-big-up {
13331
- margin-block-start: 0.3125rem !important;
13332
- }
13333
- .mr-size-5--tablet-big-up {
13334
- margin-inline-end: 0.3125rem !important;
13335
- }
13336
- .mb-size-5--tablet-big-up {
13337
- margin-block-end: 0.3125rem !important;
13299
+ margin-block-end: 8rem !important;
13338
13300
  }
13339
- .ml-size-5--tablet-big-up {
13340
- margin-inline-start: 0.3125rem !important;
13301
+ .ml-size-128--tablet-big-up {
13302
+ margin-inline-start: 8rem !important;
13341
13303
  }
13342
- .mx-size-5--tablet-big-up {
13343
- margin-inline: 0.3125rem !important;
13304
+ .mx-size-128--tablet-big-up {
13305
+ margin-inline: 8rem !important;
13344
13306
  }
13345
- .my-size-5--tablet-big-up {
13346
- margin-block: 0.3125rem !important;
13307
+ .my-size-128--tablet-big-up {
13308
+ margin-block: 8rem !important;
13347
13309
  }
13348
- .p-size-5--tablet-big-up {
13349
- padding: 0.3125rem !important;
13310
+ .p-size-128--tablet-big-up {
13311
+ padding: 8rem !important;
13350
13312
  }
13351
- .pt-size-5--tablet-big-up {
13352
- padding-block-start: 0.3125rem !important;
13313
+ .pt-size-128--tablet-big-up {
13314
+ padding-block-start: 8rem !important;
13353
13315
  }
13354
- .pr-size-5--tablet-big-up {
13355
- padding-inline-end: 0.3125rem !important;
13316
+ .pr-size-128--tablet-big-up {
13317
+ padding-inline-end: 8rem !important;
13356
13318
  }
13357
- .pb-size-5--tablet-big-up {
13358
- padding-block-end: 0.3125rem !important;
13319
+ .pb-size-128--tablet-big-up {
13320
+ padding-block-end: 8rem !important;
13359
13321
  }
13360
- .pl-size-5--tablet-big-up {
13361
- padding-inline-start: 0.3125rem !important;
13322
+ .pl-size-128--tablet-big-up {
13323
+ padding-inline-start: 8rem !important;
13362
13324
  }
13363
- .px-size-5--tablet-big-up {
13364
- padding-inline: 0.3125rem !important;
13325
+ .px-size-128--tablet-big-up {
13326
+ padding-inline: 8rem !important;
13365
13327
  }
13366
- .py-size-5--tablet-big-up {
13367
- padding-block: 0.3125rem !important;
13328
+ .py-size-128--tablet-big-up {
13329
+ padding-block: 8rem !important;
13368
13330
  }
13369
- .gap-size-5--tablet-big-up {
13370
- gap: 0.3125rem !important;
13331
+ .gap-size-128--tablet-big-up {
13332
+ gap: 8rem !important;
13371
13333
  }
13372
13334
  .m-size-10--tablet-big-up {
13373
13335
  margin: 0.625rem !important;
@@ -13414,51 +13376,6 @@ button.pkt-link {
13414
13376
  .gap-size-10--tablet-big-up {
13415
13377
  gap: 0.625rem !important;
13416
13378
  }
13417
- .m-size-15--tablet-big-up {
13418
- margin: 0.9375rem !important;
13419
- }
13420
- .mt-size-15--tablet-big-up {
13421
- margin-block-start: 0.9375rem !important;
13422
- }
13423
- .mr-size-15--tablet-big-up {
13424
- margin-inline-end: 0.9375rem !important;
13425
- }
13426
- .mb-size-15--tablet-big-up {
13427
- margin-block-end: 0.9375rem !important;
13428
- }
13429
- .ml-size-15--tablet-big-up {
13430
- margin-inline-start: 0.9375rem !important;
13431
- }
13432
- .mx-size-15--tablet-big-up {
13433
- margin-inline: 0.9375rem !important;
13434
- }
13435
- .my-size-15--tablet-big-up {
13436
- margin-block: 0.9375rem !important;
13437
- }
13438
- .p-size-15--tablet-big-up {
13439
- padding: 0.9375rem !important;
13440
- }
13441
- .pt-size-15--tablet-big-up {
13442
- padding-block-start: 0.9375rem !important;
13443
- }
13444
- .pr-size-15--tablet-big-up {
13445
- padding-inline-end: 0.9375rem !important;
13446
- }
13447
- .pb-size-15--tablet-big-up {
13448
- padding-block-end: 0.9375rem !important;
13449
- }
13450
- .pl-size-15--tablet-big-up {
13451
- padding-inline-start: 0.9375rem !important;
13452
- }
13453
- .px-size-15--tablet-big-up {
13454
- padding-inline: 0.9375rem !important;
13455
- }
13456
- .py-size-15--tablet-big-up {
13457
- padding-block: 0.9375rem !important;
13458
- }
13459
- .gap-size-15--tablet-big-up {
13460
- gap: 0.9375rem !important;
13461
- }
13462
13379
  .m-size-20--tablet-big-up {
13463
13380
  margin: 1.25rem !important;
13464
13381
  }
@@ -13549,95 +13466,185 @@ button.pkt-link {
13549
13466
  .gap-size-30--tablet-big-up {
13550
13467
  gap: 1.875rem !important;
13551
13468
  }
13552
- .m-size-50--tablet-big-up {
13553
- margin: 3.125rem !important;
13469
+ .m-size-60--tablet-big-up {
13470
+ margin: 3.75rem !important;
13554
13471
  }
13555
- .mt-size-50--tablet-big-up {
13556
- margin-block-start: 3.125rem !important;
13472
+ .mt-size-60--tablet-big-up {
13473
+ margin-block-start: 3.75rem !important;
13557
13474
  }
13558
- .mr-size-50--tablet-big-up {
13559
- margin-inline-end: 3.125rem !important;
13475
+ .mr-size-60--tablet-big-up {
13476
+ margin-inline-end: 3.75rem !important;
13560
13477
  }
13561
- .mb-size-50--tablet-big-up {
13562
- margin-block-end: 3.125rem !important;
13478
+ .mb-size-60--tablet-big-up {
13479
+ margin-block-end: 3.75rem !important;
13563
13480
  }
13564
- .ml-size-50--tablet-big-up {
13565
- margin-inline-start: 3.125rem !important;
13481
+ .ml-size-60--tablet-big-up {
13482
+ margin-inline-start: 3.75rem !important;
13566
13483
  }
13567
- .mx-size-50--tablet-big-up {
13568
- margin-inline: 3.125rem !important;
13484
+ .mx-size-60--tablet-big-up {
13485
+ margin-inline: 3.75rem !important;
13569
13486
  }
13570
- .my-size-50--tablet-big-up {
13571
- margin-block: 3.125rem !important;
13487
+ .my-size-60--tablet-big-up {
13488
+ margin-block: 3.75rem !important;
13572
13489
  }
13573
- .p-size-50--tablet-big-up {
13574
- padding: 3.125rem !important;
13490
+ .p-size-60--tablet-big-up {
13491
+ padding: 3.75rem !important;
13575
13492
  }
13576
- .pt-size-50--tablet-big-up {
13577
- padding-block-start: 3.125rem !important;
13493
+ .pt-size-60--tablet-big-up {
13494
+ padding-block-start: 3.75rem !important;
13578
13495
  }
13579
- .pr-size-50--tablet-big-up {
13580
- padding-inline-end: 3.125rem !important;
13496
+ .pr-size-60--tablet-big-up {
13497
+ padding-inline-end: 3.75rem !important;
13581
13498
  }
13582
- .pb-size-50--tablet-big-up {
13583
- padding-block-end: 3.125rem !important;
13499
+ .pb-size-60--tablet-big-up {
13500
+ padding-block-end: 3.75rem !important;
13584
13501
  }
13585
- .pl-size-50--tablet-big-up {
13586
- padding-inline-start: 3.125rem !important;
13502
+ .pl-size-60--tablet-big-up {
13503
+ padding-inline-start: 3.75rem !important;
13587
13504
  }
13588
- .px-size-50--tablet-big-up {
13589
- padding-inline: 3.125rem !important;
13505
+ .px-size-60--tablet-big-up {
13506
+ padding-inline: 3.75rem !important;
13590
13507
  }
13591
- .py-size-50--tablet-big-up {
13592
- padding-block: 3.125rem !important;
13508
+ .py-size-60--tablet-big-up {
13509
+ padding-block: 3.75rem !important;
13593
13510
  }
13594
- .gap-size-50--tablet-big-up {
13595
- gap: 3.125rem !important;
13511
+ .gap-size-60--tablet-big-up {
13512
+ gap: 3.75rem !important;
13596
13513
  }
13597
- .m-size-60--tablet-big-up {
13598
- margin: 3.75rem !important;
13514
+ .m-size-5--tablet-big-up {
13515
+ margin: 0.3125rem !important;
13599
13516
  }
13600
- .mt-size-60--tablet-big-up {
13601
- margin-block-start: 3.75rem !important;
13517
+ .mt-size-5--tablet-big-up {
13518
+ margin-block-start: 0.3125rem !important;
13602
13519
  }
13603
- .mr-size-60--tablet-big-up {
13604
- margin-inline-end: 3.75rem !important;
13520
+ .mr-size-5--tablet-big-up {
13521
+ margin-inline-end: 0.3125rem !important;
13605
13522
  }
13606
- .mb-size-60--tablet-big-up {
13607
- margin-block-end: 3.75rem !important;
13523
+ .mb-size-5--tablet-big-up {
13524
+ margin-block-end: 0.3125rem !important;
13525
+ }
13526
+ .ml-size-5--tablet-big-up {
13527
+ margin-inline-start: 0.3125rem !important;
13528
+ }
13529
+ .mx-size-5--tablet-big-up {
13530
+ margin-inline: 0.3125rem !important;
13531
+ }
13532
+ .my-size-5--tablet-big-up {
13533
+ margin-block: 0.3125rem !important;
13534
+ }
13535
+ .p-size-5--tablet-big-up {
13536
+ padding: 0.3125rem !important;
13537
+ }
13538
+ .pt-size-5--tablet-big-up {
13539
+ padding-block-start: 0.3125rem !important;
13540
+ }
13541
+ .pr-size-5--tablet-big-up {
13542
+ padding-inline-end: 0.3125rem !important;
13543
+ }
13544
+ .pb-size-5--tablet-big-up {
13545
+ padding-block-end: 0.3125rem !important;
13546
+ }
13547
+ .pl-size-5--tablet-big-up {
13548
+ padding-inline-start: 0.3125rem !important;
13549
+ }
13550
+ .px-size-5--tablet-big-up {
13551
+ padding-inline: 0.3125rem !important;
13552
+ }
13553
+ .py-size-5--tablet-big-up {
13554
+ padding-block: 0.3125rem !important;
13555
+ }
13556
+ .gap-size-5--tablet-big-up {
13557
+ gap: 0.3125rem !important;
13558
+ }
13559
+ .m-size-15--tablet-big-up {
13560
+ margin: 0.9375rem !important;
13561
+ }
13562
+ .mt-size-15--tablet-big-up {
13563
+ margin-block-start: 0.9375rem !important;
13564
+ }
13565
+ .mr-size-15--tablet-big-up {
13566
+ margin-inline-end: 0.9375rem !important;
13567
+ }
13568
+ .mb-size-15--tablet-big-up {
13569
+ margin-block-end: 0.9375rem !important;
13570
+ }
13571
+ .ml-size-15--tablet-big-up {
13572
+ margin-inline-start: 0.9375rem !important;
13573
+ }
13574
+ .mx-size-15--tablet-big-up {
13575
+ margin-inline: 0.9375rem !important;
13576
+ }
13577
+ .my-size-15--tablet-big-up {
13578
+ margin-block: 0.9375rem !important;
13579
+ }
13580
+ .p-size-15--tablet-big-up {
13581
+ padding: 0.9375rem !important;
13582
+ }
13583
+ .pt-size-15--tablet-big-up {
13584
+ padding-block-start: 0.9375rem !important;
13585
+ }
13586
+ .pr-size-15--tablet-big-up {
13587
+ padding-inline-end: 0.9375rem !important;
13588
+ }
13589
+ .pb-size-15--tablet-big-up {
13590
+ padding-block-end: 0.9375rem !important;
13591
+ }
13592
+ .pl-size-15--tablet-big-up {
13593
+ padding-inline-start: 0.9375rem !important;
13594
+ }
13595
+ .px-size-15--tablet-big-up {
13596
+ padding-inline: 0.9375rem !important;
13597
+ }
13598
+ .py-size-15--tablet-big-up {
13599
+ padding-block: 0.9375rem !important;
13600
+ }
13601
+ .gap-size-15--tablet-big-up {
13602
+ gap: 0.9375rem !important;
13603
+ }
13604
+ .m-size-50--tablet-big-up {
13605
+ margin: 3.125rem !important;
13606
+ }
13607
+ .mt-size-50--tablet-big-up {
13608
+ margin-block-start: 3.125rem !important;
13609
+ }
13610
+ .mr-size-50--tablet-big-up {
13611
+ margin-inline-end: 3.125rem !important;
13612
+ }
13613
+ .mb-size-50--tablet-big-up {
13614
+ margin-block-end: 3.125rem !important;
13608
13615
  }
13609
- .ml-size-60--tablet-big-up {
13610
- margin-inline-start: 3.75rem !important;
13616
+ .ml-size-50--tablet-big-up {
13617
+ margin-inline-start: 3.125rem !important;
13611
13618
  }
13612
- .mx-size-60--tablet-big-up {
13613
- margin-inline: 3.75rem !important;
13619
+ .mx-size-50--tablet-big-up {
13620
+ margin-inline: 3.125rem !important;
13614
13621
  }
13615
- .my-size-60--tablet-big-up {
13616
- margin-block: 3.75rem !important;
13622
+ .my-size-50--tablet-big-up {
13623
+ margin-block: 3.125rem !important;
13617
13624
  }
13618
- .p-size-60--tablet-big-up {
13619
- padding: 3.75rem !important;
13625
+ .p-size-50--tablet-big-up {
13626
+ padding: 3.125rem !important;
13620
13627
  }
13621
- .pt-size-60--tablet-big-up {
13622
- padding-block-start: 3.75rem !important;
13628
+ .pt-size-50--tablet-big-up {
13629
+ padding-block-start: 3.125rem !important;
13623
13630
  }
13624
- .pr-size-60--tablet-big-up {
13625
- padding-inline-end: 3.75rem !important;
13631
+ .pr-size-50--tablet-big-up {
13632
+ padding-inline-end: 3.125rem !important;
13626
13633
  }
13627
- .pb-size-60--tablet-big-up {
13628
- padding-block-end: 3.75rem !important;
13634
+ .pb-size-50--tablet-big-up {
13635
+ padding-block-end: 3.125rem !important;
13629
13636
  }
13630
- .pl-size-60--tablet-big-up {
13631
- padding-inline-start: 3.75rem !important;
13637
+ .pl-size-50--tablet-big-up {
13638
+ padding-inline-start: 3.125rem !important;
13632
13639
  }
13633
- .px-size-60--tablet-big-up {
13634
- padding-inline: 3.75rem !important;
13640
+ .px-size-50--tablet-big-up {
13641
+ padding-inline: 3.125rem !important;
13635
13642
  }
13636
- .py-size-60--tablet-big-up {
13637
- padding-block: 3.75rem !important;
13643
+ .py-size-50--tablet-big-up {
13644
+ padding-block: 3.125rem !important;
13638
13645
  }
13639
- .gap-size-60--tablet-big-up {
13640
- gap: 3.75rem !important;
13646
+ .gap-size-50--tablet-big-up {
13647
+ gap: 3.125rem !important;
13641
13648
  }
13642
13649
  .m-size-75--tablet-big-up {
13643
13650
  margin: 4.6875rem !important;
@@ -14496,6 +14503,51 @@ button.pkt-link {
14496
14503
  .gap-size-88--laptop-up {
14497
14504
  gap: 5.5rem !important;
14498
14505
  }
14506
+ .m-size-96--laptop-up {
14507
+ margin: 6rem !important;
14508
+ }
14509
+ .mt-size-96--laptop-up {
14510
+ margin-block-start: 6rem !important;
14511
+ }
14512
+ .mr-size-96--laptop-up {
14513
+ margin-inline-end: 6rem !important;
14514
+ }
14515
+ .mb-size-96--laptop-up {
14516
+ margin-block-end: 6rem !important;
14517
+ }
14518
+ .ml-size-96--laptop-up {
14519
+ margin-inline-start: 6rem !important;
14520
+ }
14521
+ .mx-size-96--laptop-up {
14522
+ margin-inline: 6rem !important;
14523
+ }
14524
+ .my-size-96--laptop-up {
14525
+ margin-block: 6rem !important;
14526
+ }
14527
+ .p-size-96--laptop-up {
14528
+ padding: 6rem !important;
14529
+ }
14530
+ .pt-size-96--laptop-up {
14531
+ padding-block-start: 6rem !important;
14532
+ }
14533
+ .pr-size-96--laptop-up {
14534
+ padding-inline-end: 6rem !important;
14535
+ }
14536
+ .pb-size-96--laptop-up {
14537
+ padding-block-end: 6rem !important;
14538
+ }
14539
+ .pl-size-96--laptop-up {
14540
+ padding-inline-start: 6rem !important;
14541
+ }
14542
+ .px-size-96--laptop-up {
14543
+ padding-inline: 6rem !important;
14544
+ }
14545
+ .py-size-96--laptop-up {
14546
+ padding-block: 6rem !important;
14547
+ }
14548
+ .gap-size-96--laptop-up {
14549
+ gap: 6rem !important;
14550
+ }
14499
14551
  .m-size-104--laptop-up {
14500
14552
  margin: 6.5rem !important;
14501
14553
  }
@@ -14586,140 +14638,230 @@ button.pkt-link {
14586
14638
  .gap-size-128--laptop-up {
14587
14639
  gap: 8rem !important;
14588
14640
  }
14589
- .m-size-148--laptop-up {
14590
- margin: 9.25rem !important;
14641
+ .m-size-10--laptop-up {
14642
+ margin: 0.625rem !important;
14591
14643
  }
14592
- .mt-size-148--laptop-up {
14593
- margin-block-start: 9.25rem !important;
14644
+ .mt-size-10--laptop-up {
14645
+ margin-block-start: 0.625rem !important;
14594
14646
  }
14595
- .mr-size-148--laptop-up {
14596
- margin-inline-end: 9.25rem !important;
14647
+ .mr-size-10--laptop-up {
14648
+ margin-inline-end: 0.625rem !important;
14597
14649
  }
14598
- .mb-size-148--laptop-up {
14599
- margin-block-end: 9.25rem !important;
14650
+ .mb-size-10--laptop-up {
14651
+ margin-block-end: 0.625rem !important;
14600
14652
  }
14601
- .ml-size-148--laptop-up {
14602
- margin-inline-start: 9.25rem !important;
14653
+ .ml-size-10--laptop-up {
14654
+ margin-inline-start: 0.625rem !important;
14603
14655
  }
14604
- .mx-size-148--laptop-up {
14605
- margin-inline: 9.25rem !important;
14656
+ .mx-size-10--laptop-up {
14657
+ margin-inline: 0.625rem !important;
14606
14658
  }
14607
- .my-size-148--laptop-up {
14608
- margin-block: 9.25rem !important;
14659
+ .my-size-10--laptop-up {
14660
+ margin-block: 0.625rem !important;
14609
14661
  }
14610
- .p-size-148--laptop-up {
14611
- padding: 9.25rem !important;
14662
+ .p-size-10--laptop-up {
14663
+ padding: 0.625rem !important;
14612
14664
  }
14613
- .pt-size-148--laptop-up {
14614
- padding-block-start: 9.25rem !important;
14665
+ .pt-size-10--laptop-up {
14666
+ padding-block-start: 0.625rem !important;
14615
14667
  }
14616
- .pr-size-148--laptop-up {
14617
- padding-inline-end: 9.25rem !important;
14668
+ .pr-size-10--laptop-up {
14669
+ padding-inline-end: 0.625rem !important;
14618
14670
  }
14619
- .pb-size-148--laptop-up {
14620
- padding-block-end: 9.25rem !important;
14671
+ .pb-size-10--laptop-up {
14672
+ padding-block-end: 0.625rem !important;
14621
14673
  }
14622
- .pl-size-148--laptop-up {
14623
- padding-inline-start: 9.25rem !important;
14674
+ .pl-size-10--laptop-up {
14675
+ padding-inline-start: 0.625rem !important;
14624
14676
  }
14625
- .px-size-148--laptop-up {
14626
- padding-inline: 9.25rem !important;
14677
+ .px-size-10--laptop-up {
14678
+ padding-inline: 0.625rem !important;
14627
14679
  }
14628
- .py-size-148--laptop-up {
14629
- padding-block: 9.25rem !important;
14680
+ .py-size-10--laptop-up {
14681
+ padding-block: 0.625rem !important;
14630
14682
  }
14631
- .gap-size-148--laptop-up {
14632
- gap: 9.25rem !important;
14683
+ .gap-size-10--laptop-up {
14684
+ gap: 0.625rem !important;
14633
14685
  }
14634
- .m-size-5--laptop-up {
14635
- margin: 0.3125rem !important;
14686
+ .m-size-20--laptop-up {
14687
+ margin: 1.25rem !important;
14636
14688
  }
14637
- .mt-size-5--laptop-up {
14638
- margin-block-start: 0.3125rem !important;
14689
+ .mt-size-20--laptop-up {
14690
+ margin-block-start: 1.25rem !important;
14639
14691
  }
14640
- .mr-size-5--laptop-up {
14641
- margin-inline-end: 0.3125rem !important;
14692
+ .mr-size-20--laptop-up {
14693
+ margin-inline-end: 1.25rem !important;
14642
14694
  }
14643
- .mb-size-5--laptop-up {
14644
- margin-block-end: 0.3125rem !important;
14695
+ .mb-size-20--laptop-up {
14696
+ margin-block-end: 1.25rem !important;
14645
14697
  }
14646
- .ml-size-5--laptop-up {
14647
- margin-inline-start: 0.3125rem !important;
14698
+ .ml-size-20--laptop-up {
14699
+ margin-inline-start: 1.25rem !important;
14648
14700
  }
14649
- .mx-size-5--laptop-up {
14650
- margin-inline: 0.3125rem !important;
14701
+ .mx-size-20--laptop-up {
14702
+ margin-inline: 1.25rem !important;
14651
14703
  }
14652
- .my-size-5--laptop-up {
14653
- margin-block: 0.3125rem !important;
14704
+ .my-size-20--laptop-up {
14705
+ margin-block: 1.25rem !important;
14654
14706
  }
14655
- .p-size-5--laptop-up {
14656
- padding: 0.3125rem !important;
14707
+ .p-size-20--laptop-up {
14708
+ padding: 1.25rem !important;
14657
14709
  }
14658
- .pt-size-5--laptop-up {
14659
- padding-block-start: 0.3125rem !important;
14710
+ .pt-size-20--laptop-up {
14711
+ padding-block-start: 1.25rem !important;
14660
14712
  }
14661
- .pr-size-5--laptop-up {
14662
- padding-inline-end: 0.3125rem !important;
14713
+ .pr-size-20--laptop-up {
14714
+ padding-inline-end: 1.25rem !important;
14663
14715
  }
14664
- .pb-size-5--laptop-up {
14665
- padding-block-end: 0.3125rem !important;
14716
+ .pb-size-20--laptop-up {
14717
+ padding-block-end: 1.25rem !important;
14666
14718
  }
14667
- .pl-size-5--laptop-up {
14668
- padding-inline-start: 0.3125rem !important;
14719
+ .pl-size-20--laptop-up {
14720
+ padding-inline-start: 1.25rem !important;
14669
14721
  }
14670
- .px-size-5--laptop-up {
14671
- padding-inline: 0.3125rem !important;
14722
+ .px-size-20--laptop-up {
14723
+ padding-inline: 1.25rem !important;
14672
14724
  }
14673
- .py-size-5--laptop-up {
14674
- padding-block: 0.3125rem !important;
14725
+ .py-size-20--laptop-up {
14726
+ padding-block: 1.25rem !important;
14675
14727
  }
14676
- .gap-size-5--laptop-up {
14677
- gap: 0.3125rem !important;
14728
+ .gap-size-20--laptop-up {
14729
+ gap: 1.25rem !important;
14678
14730
  }
14679
- .m-size-10--laptop-up {
14680
- margin: 0.625rem !important;
14731
+ .m-size-30--laptop-up {
14732
+ margin: 1.875rem !important;
14681
14733
  }
14682
- .mt-size-10--laptop-up {
14683
- margin-block-start: 0.625rem !important;
14734
+ .mt-size-30--laptop-up {
14735
+ margin-block-start: 1.875rem !important;
14684
14736
  }
14685
- .mr-size-10--laptop-up {
14686
- margin-inline-end: 0.625rem !important;
14737
+ .mr-size-30--laptop-up {
14738
+ margin-inline-end: 1.875rem !important;
14687
14739
  }
14688
- .mb-size-10--laptop-up {
14689
- margin-block-end: 0.625rem !important;
14740
+ .mb-size-30--laptop-up {
14741
+ margin-block-end: 1.875rem !important;
14690
14742
  }
14691
- .ml-size-10--laptop-up {
14692
- margin-inline-start: 0.625rem !important;
14743
+ .ml-size-30--laptop-up {
14744
+ margin-inline-start: 1.875rem !important;
14745
+ }
14746
+ .mx-size-30--laptop-up {
14747
+ margin-inline: 1.875rem !important;
14748
+ }
14749
+ .my-size-30--laptop-up {
14750
+ margin-block: 1.875rem !important;
14751
+ }
14752
+ .p-size-30--laptop-up {
14753
+ padding: 1.875rem !important;
14754
+ }
14755
+ .pt-size-30--laptop-up {
14756
+ padding-block-start: 1.875rem !important;
14757
+ }
14758
+ .pr-size-30--laptop-up {
14759
+ padding-inline-end: 1.875rem !important;
14760
+ }
14761
+ .pb-size-30--laptop-up {
14762
+ padding-block-end: 1.875rem !important;
14763
+ }
14764
+ .pl-size-30--laptop-up {
14765
+ padding-inline-start: 1.875rem !important;
14766
+ }
14767
+ .px-size-30--laptop-up {
14768
+ padding-inline: 1.875rem !important;
14769
+ }
14770
+ .py-size-30--laptop-up {
14771
+ padding-block: 1.875rem !important;
14772
+ }
14773
+ .gap-size-30--laptop-up {
14774
+ gap: 1.875rem !important;
14775
+ }
14776
+ .m-size-60--laptop-up {
14777
+ margin: 3.75rem !important;
14778
+ }
14779
+ .mt-size-60--laptop-up {
14780
+ margin-block-start: 3.75rem !important;
14781
+ }
14782
+ .mr-size-60--laptop-up {
14783
+ margin-inline-end: 3.75rem !important;
14784
+ }
14785
+ .mb-size-60--laptop-up {
14786
+ margin-block-end: 3.75rem !important;
14787
+ }
14788
+ .ml-size-60--laptop-up {
14789
+ margin-inline-start: 3.75rem !important;
14790
+ }
14791
+ .mx-size-60--laptop-up {
14792
+ margin-inline: 3.75rem !important;
14793
+ }
14794
+ .my-size-60--laptop-up {
14795
+ margin-block: 3.75rem !important;
14796
+ }
14797
+ .p-size-60--laptop-up {
14798
+ padding: 3.75rem !important;
14799
+ }
14800
+ .pt-size-60--laptop-up {
14801
+ padding-block-start: 3.75rem !important;
14802
+ }
14803
+ .pr-size-60--laptop-up {
14804
+ padding-inline-end: 3.75rem !important;
14805
+ }
14806
+ .pb-size-60--laptop-up {
14807
+ padding-block-end: 3.75rem !important;
14808
+ }
14809
+ .pl-size-60--laptop-up {
14810
+ padding-inline-start: 3.75rem !important;
14811
+ }
14812
+ .px-size-60--laptop-up {
14813
+ padding-inline: 3.75rem !important;
14814
+ }
14815
+ .py-size-60--laptop-up {
14816
+ padding-block: 3.75rem !important;
14817
+ }
14818
+ .gap-size-60--laptop-up {
14819
+ gap: 3.75rem !important;
14820
+ }
14821
+ .m-size-5--laptop-up {
14822
+ margin: 0.3125rem !important;
14823
+ }
14824
+ .mt-size-5--laptop-up {
14825
+ margin-block-start: 0.3125rem !important;
14826
+ }
14827
+ .mr-size-5--laptop-up {
14828
+ margin-inline-end: 0.3125rem !important;
14829
+ }
14830
+ .mb-size-5--laptop-up {
14831
+ margin-block-end: 0.3125rem !important;
14693
14832
  }
14694
- .mx-size-10--laptop-up {
14695
- margin-inline: 0.625rem !important;
14833
+ .ml-size-5--laptop-up {
14834
+ margin-inline-start: 0.3125rem !important;
14696
14835
  }
14697
- .my-size-10--laptop-up {
14698
- margin-block: 0.625rem !important;
14836
+ .mx-size-5--laptop-up {
14837
+ margin-inline: 0.3125rem !important;
14699
14838
  }
14700
- .p-size-10--laptop-up {
14701
- padding: 0.625rem !important;
14839
+ .my-size-5--laptop-up {
14840
+ margin-block: 0.3125rem !important;
14702
14841
  }
14703
- .pt-size-10--laptop-up {
14704
- padding-block-start: 0.625rem !important;
14842
+ .p-size-5--laptop-up {
14843
+ padding: 0.3125rem !important;
14705
14844
  }
14706
- .pr-size-10--laptop-up {
14707
- padding-inline-end: 0.625rem !important;
14845
+ .pt-size-5--laptop-up {
14846
+ padding-block-start: 0.3125rem !important;
14708
14847
  }
14709
- .pb-size-10--laptop-up {
14710
- padding-block-end: 0.625rem !important;
14848
+ .pr-size-5--laptop-up {
14849
+ padding-inline-end: 0.3125rem !important;
14711
14850
  }
14712
- .pl-size-10--laptop-up {
14713
- padding-inline-start: 0.625rem !important;
14851
+ .pb-size-5--laptop-up {
14852
+ padding-block-end: 0.3125rem !important;
14714
14853
  }
14715
- .px-size-10--laptop-up {
14716
- padding-inline: 0.625rem !important;
14854
+ .pl-size-5--laptop-up {
14855
+ padding-inline-start: 0.3125rem !important;
14717
14856
  }
14718
- .py-size-10--laptop-up {
14719
- padding-block: 0.625rem !important;
14857
+ .px-size-5--laptop-up {
14858
+ padding-inline: 0.3125rem !important;
14720
14859
  }
14721
- .gap-size-10--laptop-up {
14722
- gap: 0.625rem !important;
14860
+ .py-size-5--laptop-up {
14861
+ padding-block: 0.3125rem !important;
14862
+ }
14863
+ .gap-size-5--laptop-up {
14864
+ gap: 0.3125rem !important;
14723
14865
  }
14724
14866
  .m-size-15--laptop-up {
14725
14867
  margin: 0.9375rem !important;
@@ -14766,96 +14908,6 @@ button.pkt-link {
14766
14908
  .gap-size-15--laptop-up {
14767
14909
  gap: 0.9375rem !important;
14768
14910
  }
14769
- .m-size-20--laptop-up {
14770
- margin: 1.25rem !important;
14771
- }
14772
- .mt-size-20--laptop-up {
14773
- margin-block-start: 1.25rem !important;
14774
- }
14775
- .mr-size-20--laptop-up {
14776
- margin-inline-end: 1.25rem !important;
14777
- }
14778
- .mb-size-20--laptop-up {
14779
- margin-block-end: 1.25rem !important;
14780
- }
14781
- .ml-size-20--laptop-up {
14782
- margin-inline-start: 1.25rem !important;
14783
- }
14784
- .mx-size-20--laptop-up {
14785
- margin-inline: 1.25rem !important;
14786
- }
14787
- .my-size-20--laptop-up {
14788
- margin-block: 1.25rem !important;
14789
- }
14790
- .p-size-20--laptop-up {
14791
- padding: 1.25rem !important;
14792
- }
14793
- .pt-size-20--laptop-up {
14794
- padding-block-start: 1.25rem !important;
14795
- }
14796
- .pr-size-20--laptop-up {
14797
- padding-inline-end: 1.25rem !important;
14798
- }
14799
- .pb-size-20--laptop-up {
14800
- padding-block-end: 1.25rem !important;
14801
- }
14802
- .pl-size-20--laptop-up {
14803
- padding-inline-start: 1.25rem !important;
14804
- }
14805
- .px-size-20--laptop-up {
14806
- padding-inline: 1.25rem !important;
14807
- }
14808
- .py-size-20--laptop-up {
14809
- padding-block: 1.25rem !important;
14810
- }
14811
- .gap-size-20--laptop-up {
14812
- gap: 1.25rem !important;
14813
- }
14814
- .m-size-30--laptop-up {
14815
- margin: 1.875rem !important;
14816
- }
14817
- .mt-size-30--laptop-up {
14818
- margin-block-start: 1.875rem !important;
14819
- }
14820
- .mr-size-30--laptop-up {
14821
- margin-inline-end: 1.875rem !important;
14822
- }
14823
- .mb-size-30--laptop-up {
14824
- margin-block-end: 1.875rem !important;
14825
- }
14826
- .ml-size-30--laptop-up {
14827
- margin-inline-start: 1.875rem !important;
14828
- }
14829
- .mx-size-30--laptop-up {
14830
- margin-inline: 1.875rem !important;
14831
- }
14832
- .my-size-30--laptop-up {
14833
- margin-block: 1.875rem !important;
14834
- }
14835
- .p-size-30--laptop-up {
14836
- padding: 1.875rem !important;
14837
- }
14838
- .pt-size-30--laptop-up {
14839
- padding-block-start: 1.875rem !important;
14840
- }
14841
- .pr-size-30--laptop-up {
14842
- padding-inline-end: 1.875rem !important;
14843
- }
14844
- .pb-size-30--laptop-up {
14845
- padding-block-end: 1.875rem !important;
14846
- }
14847
- .pl-size-30--laptop-up {
14848
- padding-inline-start: 1.875rem !important;
14849
- }
14850
- .px-size-30--laptop-up {
14851
- padding-inline: 1.875rem !important;
14852
- }
14853
- .py-size-30--laptop-up {
14854
- padding-block: 1.875rem !important;
14855
- }
14856
- .gap-size-30--laptop-up {
14857
- gap: 1.875rem !important;
14858
- }
14859
14911
  .m-size-50--laptop-up {
14860
14912
  margin: 3.125rem !important;
14861
14913
  }
@@ -14901,51 +14953,6 @@ button.pkt-link {
14901
14953
  .gap-size-50--laptop-up {
14902
14954
  gap: 3.125rem !important;
14903
14955
  }
14904
- .m-size-60--laptop-up {
14905
- margin: 3.75rem !important;
14906
- }
14907
- .mt-size-60--laptop-up {
14908
- margin-block-start: 3.75rem !important;
14909
- }
14910
- .mr-size-60--laptop-up {
14911
- margin-inline-end: 3.75rem !important;
14912
- }
14913
- .mb-size-60--laptop-up {
14914
- margin-block-end: 3.75rem !important;
14915
- }
14916
- .ml-size-60--laptop-up {
14917
- margin-inline-start: 3.75rem !important;
14918
- }
14919
- .mx-size-60--laptop-up {
14920
- margin-inline: 3.75rem !important;
14921
- }
14922
- .my-size-60--laptop-up {
14923
- margin-block: 3.75rem !important;
14924
- }
14925
- .p-size-60--laptop-up {
14926
- padding: 3.75rem !important;
14927
- }
14928
- .pt-size-60--laptop-up {
14929
- padding-block-start: 3.75rem !important;
14930
- }
14931
- .pr-size-60--laptop-up {
14932
- padding-inline-end: 3.75rem !important;
14933
- }
14934
- .pb-size-60--laptop-up {
14935
- padding-block-end: 3.75rem !important;
14936
- }
14937
- .pl-size-60--laptop-up {
14938
- padding-inline-start: 3.75rem !important;
14939
- }
14940
- .px-size-60--laptop-up {
14941
- padding-inline: 3.75rem !important;
14942
- }
14943
- .py-size-60--laptop-up {
14944
- padding-block: 3.75rem !important;
14945
- }
14946
- .gap-size-60--laptop-up {
14947
- gap: 3.75rem !important;
14948
- }
14949
14956
  .m-size-75--laptop-up {
14950
14957
  margin: 4.6875rem !important;
14951
14958
  }
@@ -15803,6 +15810,51 @@ button.pkt-link {
15803
15810
  .gap-size-88--desktop-up {
15804
15811
  gap: 5.5rem !important;
15805
15812
  }
15813
+ .m-size-96--desktop-up {
15814
+ margin: 6rem !important;
15815
+ }
15816
+ .mt-size-96--desktop-up {
15817
+ margin-block-start: 6rem !important;
15818
+ }
15819
+ .mr-size-96--desktop-up {
15820
+ margin-inline-end: 6rem !important;
15821
+ }
15822
+ .mb-size-96--desktop-up {
15823
+ margin-block-end: 6rem !important;
15824
+ }
15825
+ .ml-size-96--desktop-up {
15826
+ margin-inline-start: 6rem !important;
15827
+ }
15828
+ .mx-size-96--desktop-up {
15829
+ margin-inline: 6rem !important;
15830
+ }
15831
+ .my-size-96--desktop-up {
15832
+ margin-block: 6rem !important;
15833
+ }
15834
+ .p-size-96--desktop-up {
15835
+ padding: 6rem !important;
15836
+ }
15837
+ .pt-size-96--desktop-up {
15838
+ padding-block-start: 6rem !important;
15839
+ }
15840
+ .pr-size-96--desktop-up {
15841
+ padding-inline-end: 6rem !important;
15842
+ }
15843
+ .pb-size-96--desktop-up {
15844
+ padding-block-end: 6rem !important;
15845
+ }
15846
+ .pl-size-96--desktop-up {
15847
+ padding-inline-start: 6rem !important;
15848
+ }
15849
+ .px-size-96--desktop-up {
15850
+ padding-inline: 6rem !important;
15851
+ }
15852
+ .py-size-96--desktop-up {
15853
+ padding-block: 6rem !important;
15854
+ }
15855
+ .gap-size-96--desktop-up {
15856
+ gap: 6rem !important;
15857
+ }
15806
15858
  .m-size-104--desktop-up {
15807
15859
  margin: 6.5rem !important;
15808
15860
  }
@@ -15869,119 +15921,29 @@ button.pkt-link {
15869
15921
  .my-size-128--desktop-up {
15870
15922
  margin-block: 8rem !important;
15871
15923
  }
15872
- .p-size-128--desktop-up {
15873
- padding: 8rem !important;
15874
- }
15875
- .pt-size-128--desktop-up {
15876
- padding-block-start: 8rem !important;
15877
- }
15878
- .pr-size-128--desktop-up {
15879
- padding-inline-end: 8rem !important;
15880
- }
15881
- .pb-size-128--desktop-up {
15882
- padding-block-end: 8rem !important;
15883
- }
15884
- .pl-size-128--desktop-up {
15885
- padding-inline-start: 8rem !important;
15886
- }
15887
- .px-size-128--desktop-up {
15888
- padding-inline: 8rem !important;
15889
- }
15890
- .py-size-128--desktop-up {
15891
- padding-block: 8rem !important;
15892
- }
15893
- .gap-size-128--desktop-up {
15894
- gap: 8rem !important;
15895
- }
15896
- .m-size-148--desktop-up {
15897
- margin: 9.25rem !important;
15898
- }
15899
- .mt-size-148--desktop-up {
15900
- margin-block-start: 9.25rem !important;
15901
- }
15902
- .mr-size-148--desktop-up {
15903
- margin-inline-end: 9.25rem !important;
15904
- }
15905
- .mb-size-148--desktop-up {
15906
- margin-block-end: 9.25rem !important;
15907
- }
15908
- .ml-size-148--desktop-up {
15909
- margin-inline-start: 9.25rem !important;
15910
- }
15911
- .mx-size-148--desktop-up {
15912
- margin-inline: 9.25rem !important;
15913
- }
15914
- .my-size-148--desktop-up {
15915
- margin-block: 9.25rem !important;
15916
- }
15917
- .p-size-148--desktop-up {
15918
- padding: 9.25rem !important;
15919
- }
15920
- .pt-size-148--desktop-up {
15921
- padding-block-start: 9.25rem !important;
15922
- }
15923
- .pr-size-148--desktop-up {
15924
- padding-inline-end: 9.25rem !important;
15925
- }
15926
- .pb-size-148--desktop-up {
15927
- padding-block-end: 9.25rem !important;
15928
- }
15929
- .pl-size-148--desktop-up {
15930
- padding-inline-start: 9.25rem !important;
15931
- }
15932
- .px-size-148--desktop-up {
15933
- padding-inline: 9.25rem !important;
15934
- }
15935
- .py-size-148--desktop-up {
15936
- padding-block: 9.25rem !important;
15937
- }
15938
- .gap-size-148--desktop-up {
15939
- gap: 9.25rem !important;
15940
- }
15941
- .m-size-5--desktop-up {
15942
- margin: 0.3125rem !important;
15943
- }
15944
- .mt-size-5--desktop-up {
15945
- margin-block-start: 0.3125rem !important;
15946
- }
15947
- .mr-size-5--desktop-up {
15948
- margin-inline-end: 0.3125rem !important;
15949
- }
15950
- .mb-size-5--desktop-up {
15951
- margin-block-end: 0.3125rem !important;
15952
- }
15953
- .ml-size-5--desktop-up {
15954
- margin-inline-start: 0.3125rem !important;
15955
- }
15956
- .mx-size-5--desktop-up {
15957
- margin-inline: 0.3125rem !important;
15958
- }
15959
- .my-size-5--desktop-up {
15960
- margin-block: 0.3125rem !important;
15961
- }
15962
- .p-size-5--desktop-up {
15963
- padding: 0.3125rem !important;
15964
- }
15965
- .pt-size-5--desktop-up {
15966
- padding-block-start: 0.3125rem !important;
15924
+ .p-size-128--desktop-up {
15925
+ padding: 8rem !important;
15967
15926
  }
15968
- .pr-size-5--desktop-up {
15969
- padding-inline-end: 0.3125rem !important;
15927
+ .pt-size-128--desktop-up {
15928
+ padding-block-start: 8rem !important;
15970
15929
  }
15971
- .pb-size-5--desktop-up {
15972
- padding-block-end: 0.3125rem !important;
15930
+ .pr-size-128--desktop-up {
15931
+ padding-inline-end: 8rem !important;
15973
15932
  }
15974
- .pl-size-5--desktop-up {
15975
- padding-inline-start: 0.3125rem !important;
15933
+ .pb-size-128--desktop-up {
15934
+ padding-block-end: 8rem !important;
15976
15935
  }
15977
- .px-size-5--desktop-up {
15978
- padding-inline: 0.3125rem !important;
15936
+ .pl-size-128--desktop-up {
15937
+ padding-inline-start: 8rem !important;
15979
15938
  }
15980
- .py-size-5--desktop-up {
15981
- padding-block: 0.3125rem !important;
15939
+ .px-size-128--desktop-up {
15940
+ padding-inline: 8rem !important;
15982
15941
  }
15983
- .gap-size-5--desktop-up {
15984
- gap: 0.3125rem !important;
15942
+ .py-size-128--desktop-up {
15943
+ padding-block: 8rem !important;
15944
+ }
15945
+ .gap-size-128--desktop-up {
15946
+ gap: 8rem !important;
15985
15947
  }
15986
15948
  .m-size-10--desktop-up {
15987
15949
  margin: 0.625rem !important;
@@ -16028,51 +15990,6 @@ button.pkt-link {
16028
15990
  .gap-size-10--desktop-up {
16029
15991
  gap: 0.625rem !important;
16030
15992
  }
16031
- .m-size-15--desktop-up {
16032
- margin: 0.9375rem !important;
16033
- }
16034
- .mt-size-15--desktop-up {
16035
- margin-block-start: 0.9375rem !important;
16036
- }
16037
- .mr-size-15--desktop-up {
16038
- margin-inline-end: 0.9375rem !important;
16039
- }
16040
- .mb-size-15--desktop-up {
16041
- margin-block-end: 0.9375rem !important;
16042
- }
16043
- .ml-size-15--desktop-up {
16044
- margin-inline-start: 0.9375rem !important;
16045
- }
16046
- .mx-size-15--desktop-up {
16047
- margin-inline: 0.9375rem !important;
16048
- }
16049
- .my-size-15--desktop-up {
16050
- margin-block: 0.9375rem !important;
16051
- }
16052
- .p-size-15--desktop-up {
16053
- padding: 0.9375rem !important;
16054
- }
16055
- .pt-size-15--desktop-up {
16056
- padding-block-start: 0.9375rem !important;
16057
- }
16058
- .pr-size-15--desktop-up {
16059
- padding-inline-end: 0.9375rem !important;
16060
- }
16061
- .pb-size-15--desktop-up {
16062
- padding-block-end: 0.9375rem !important;
16063
- }
16064
- .pl-size-15--desktop-up {
16065
- padding-inline-start: 0.9375rem !important;
16066
- }
16067
- .px-size-15--desktop-up {
16068
- padding-inline: 0.9375rem !important;
16069
- }
16070
- .py-size-15--desktop-up {
16071
- padding-block: 0.9375rem !important;
16072
- }
16073
- .gap-size-15--desktop-up {
16074
- gap: 0.9375rem !important;
16075
- }
16076
15993
  .m-size-20--desktop-up {
16077
15994
  margin: 1.25rem !important;
16078
15995
  }
@@ -16163,51 +16080,6 @@ button.pkt-link {
16163
16080
  .gap-size-30--desktop-up {
16164
16081
  gap: 1.875rem !important;
16165
16082
  }
16166
- .m-size-50--desktop-up {
16167
- margin: 3.125rem !important;
16168
- }
16169
- .mt-size-50--desktop-up {
16170
- margin-block-start: 3.125rem !important;
16171
- }
16172
- .mr-size-50--desktop-up {
16173
- margin-inline-end: 3.125rem !important;
16174
- }
16175
- .mb-size-50--desktop-up {
16176
- margin-block-end: 3.125rem !important;
16177
- }
16178
- .ml-size-50--desktop-up {
16179
- margin-inline-start: 3.125rem !important;
16180
- }
16181
- .mx-size-50--desktop-up {
16182
- margin-inline: 3.125rem !important;
16183
- }
16184
- .my-size-50--desktop-up {
16185
- margin-block: 3.125rem !important;
16186
- }
16187
- .p-size-50--desktop-up {
16188
- padding: 3.125rem !important;
16189
- }
16190
- .pt-size-50--desktop-up {
16191
- padding-block-start: 3.125rem !important;
16192
- }
16193
- .pr-size-50--desktop-up {
16194
- padding-inline-end: 3.125rem !important;
16195
- }
16196
- .pb-size-50--desktop-up {
16197
- padding-block-end: 3.125rem !important;
16198
- }
16199
- .pl-size-50--desktop-up {
16200
- padding-inline-start: 3.125rem !important;
16201
- }
16202
- .px-size-50--desktop-up {
16203
- padding-inline: 3.125rem !important;
16204
- }
16205
- .py-size-50--desktop-up {
16206
- padding-block: 3.125rem !important;
16207
- }
16208
- .gap-size-50--desktop-up {
16209
- gap: 3.125rem !important;
16210
- }
16211
16083
  .m-size-60--desktop-up {
16212
16084
  margin: 3.75rem !important;
16213
16085
  }
@@ -16253,6 +16125,141 @@ button.pkt-link {
16253
16125
  .gap-size-60--desktop-up {
16254
16126
  gap: 3.75rem !important;
16255
16127
  }
16128
+ .m-size-5--desktop-up {
16129
+ margin: 0.3125rem !important;
16130
+ }
16131
+ .mt-size-5--desktop-up {
16132
+ margin-block-start: 0.3125rem !important;
16133
+ }
16134
+ .mr-size-5--desktop-up {
16135
+ margin-inline-end: 0.3125rem !important;
16136
+ }
16137
+ .mb-size-5--desktop-up {
16138
+ margin-block-end: 0.3125rem !important;
16139
+ }
16140
+ .ml-size-5--desktop-up {
16141
+ margin-inline-start: 0.3125rem !important;
16142
+ }
16143
+ .mx-size-5--desktop-up {
16144
+ margin-inline: 0.3125rem !important;
16145
+ }
16146
+ .my-size-5--desktop-up {
16147
+ margin-block: 0.3125rem !important;
16148
+ }
16149
+ .p-size-5--desktop-up {
16150
+ padding: 0.3125rem !important;
16151
+ }
16152
+ .pt-size-5--desktop-up {
16153
+ padding-block-start: 0.3125rem !important;
16154
+ }
16155
+ .pr-size-5--desktop-up {
16156
+ padding-inline-end: 0.3125rem !important;
16157
+ }
16158
+ .pb-size-5--desktop-up {
16159
+ padding-block-end: 0.3125rem !important;
16160
+ }
16161
+ .pl-size-5--desktop-up {
16162
+ padding-inline-start: 0.3125rem !important;
16163
+ }
16164
+ .px-size-5--desktop-up {
16165
+ padding-inline: 0.3125rem !important;
16166
+ }
16167
+ .py-size-5--desktop-up {
16168
+ padding-block: 0.3125rem !important;
16169
+ }
16170
+ .gap-size-5--desktop-up {
16171
+ gap: 0.3125rem !important;
16172
+ }
16173
+ .m-size-15--desktop-up {
16174
+ margin: 0.9375rem !important;
16175
+ }
16176
+ .mt-size-15--desktop-up {
16177
+ margin-block-start: 0.9375rem !important;
16178
+ }
16179
+ .mr-size-15--desktop-up {
16180
+ margin-inline-end: 0.9375rem !important;
16181
+ }
16182
+ .mb-size-15--desktop-up {
16183
+ margin-block-end: 0.9375rem !important;
16184
+ }
16185
+ .ml-size-15--desktop-up {
16186
+ margin-inline-start: 0.9375rem !important;
16187
+ }
16188
+ .mx-size-15--desktop-up {
16189
+ margin-inline: 0.9375rem !important;
16190
+ }
16191
+ .my-size-15--desktop-up {
16192
+ margin-block: 0.9375rem !important;
16193
+ }
16194
+ .p-size-15--desktop-up {
16195
+ padding: 0.9375rem !important;
16196
+ }
16197
+ .pt-size-15--desktop-up {
16198
+ padding-block-start: 0.9375rem !important;
16199
+ }
16200
+ .pr-size-15--desktop-up {
16201
+ padding-inline-end: 0.9375rem !important;
16202
+ }
16203
+ .pb-size-15--desktop-up {
16204
+ padding-block-end: 0.9375rem !important;
16205
+ }
16206
+ .pl-size-15--desktop-up {
16207
+ padding-inline-start: 0.9375rem !important;
16208
+ }
16209
+ .px-size-15--desktop-up {
16210
+ padding-inline: 0.9375rem !important;
16211
+ }
16212
+ .py-size-15--desktop-up {
16213
+ padding-block: 0.9375rem !important;
16214
+ }
16215
+ .gap-size-15--desktop-up {
16216
+ gap: 0.9375rem !important;
16217
+ }
16218
+ .m-size-50--desktop-up {
16219
+ margin: 3.125rem !important;
16220
+ }
16221
+ .mt-size-50--desktop-up {
16222
+ margin-block-start: 3.125rem !important;
16223
+ }
16224
+ .mr-size-50--desktop-up {
16225
+ margin-inline-end: 3.125rem !important;
16226
+ }
16227
+ .mb-size-50--desktop-up {
16228
+ margin-block-end: 3.125rem !important;
16229
+ }
16230
+ .ml-size-50--desktop-up {
16231
+ margin-inline-start: 3.125rem !important;
16232
+ }
16233
+ .mx-size-50--desktop-up {
16234
+ margin-inline: 3.125rem !important;
16235
+ }
16236
+ .my-size-50--desktop-up {
16237
+ margin-block: 3.125rem !important;
16238
+ }
16239
+ .p-size-50--desktop-up {
16240
+ padding: 3.125rem !important;
16241
+ }
16242
+ .pt-size-50--desktop-up {
16243
+ padding-block-start: 3.125rem !important;
16244
+ }
16245
+ .pr-size-50--desktop-up {
16246
+ padding-inline-end: 3.125rem !important;
16247
+ }
16248
+ .pb-size-50--desktop-up {
16249
+ padding-block-end: 3.125rem !important;
16250
+ }
16251
+ .pl-size-50--desktop-up {
16252
+ padding-inline-start: 3.125rem !important;
16253
+ }
16254
+ .px-size-50--desktop-up {
16255
+ padding-inline: 3.125rem !important;
16256
+ }
16257
+ .py-size-50--desktop-up {
16258
+ padding-block: 3.125rem !important;
16259
+ }
16260
+ .gap-size-50--desktop-up {
16261
+ gap: 3.125rem !important;
16262
+ }
16256
16263
  .m-size-75--desktop-up {
16257
16264
  margin: 4.6875rem !important;
16258
16265
  }