landing-page-gem 0.1.0
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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/README.md +44 -0
- data/_config.yml +43 -0
- data/_includes/benefits.html +123 -0
- data/_includes/body.html +12 -0
- data/_includes/bottom-action-call.html +10 -0
- data/_includes/breadcrumbs.html +16 -0
- data/_includes/document-head.html +21 -0
- data/_includes/foot.html +3 -0
- data/_includes/footer.html +271 -0
- data/_includes/hash/landing.yml +1 -0
- data/_includes/header.html +28 -0
- data/_includes/navbar.html +121 -0
- data/_includes/preconnect.html +13 -0
- data/_includes/scripts/custom-theme.html +3 -0
- data/_includes/scripts/google-noscript.html +9 -0
- data/_includes/scripts/google-tag.html +23 -0
- data/_includes/scripts/vendor-cdn.html +3 -0
- data/_includes/styles/fonts.html +4 -0
- data/_includes/styles/main.html +8 -0
- data/_includes/styles/vendor.html +3 -0
- data/_includes/svg/check-mark.html +16 -0
- data/_includes/svg/check.html +13 -0
- data/_includes/svg/check_circle-24px.html +13 -0
- data/_includes/svg/earn-more.html +30 -0
- data/_includes/svg/email-24px.html +13 -0
- data/_includes/svg/endorsements-icon.html +15 -0
- data/_includes/svg/flexible-icon.html +30 -0
- data/_includes/svg/free-classes.html +36 -0
- data/_includes/svg/goals.html +21 -0
- data/_includes/svg/kcc-copy.html +62 -0
- data/_includes/svg/kcc.html +65 -0
- data/_includes/svg/kcc.svg +59 -0
- data/_includes/svg/love.html +13 -0
- data/_includes/svg/place-24px.html +13 -0
- data/_includes/svg/save-money.html +26 -0
- data/_includes/targetx-form.html +363 -0
- data/_includes/targetx-head.html +47 -0
- data/_layouts/landing.html +15 -0
- data/assets/css/content.scss +14 -0
- data/assets/img/DSC_8724_4x3.jpg +0 -0
- data/assets/img/banner-bg.jpg +0 -0
- data/assets/img/culture.svg +31 -0
- data/assets/img/d-daun2.jpg +0 -0
- data/assets/img/itransfer.png +0 -0
- data/assets/img/miguel2.jpg +0 -0
- data/assets/img/placeholder_16to9.jpg +0 -0
- data/assets/img/placeholder_4by3.jpg +0 -0
- data/assets/img/placeholder_square.jpg +0 -0
- data/assets/img/schedule.svg +42 -0
- data/assets/img/support.svg +12 -0
- data/assets/img/zippia.png +0 -0
- data/assets/js/dist/315.b82f3c2bb153940ebd76.bundle.js +1 -0
- data/assets/js/dist/321.b82f3c2bb153940ebd76.bundle.js +1 -0
- data/assets/js/dist/582.b82f3c2bb153940ebd76.bundle.js +1 -0
- data/assets/js/dist/909.b82f3c2bb153940ebd76.bundle.js +1 -0
- data/assets/js/dist/kcc-landing-page.b82f3c2bb153940ebd76.bundle.js +1 -0
- data/assets/js/dist/kcc-landing-page.b82f3c2bb153940ebd76.css +1 -0
- data/assets/js/src/footerDate.js +7 -0
- data/assets/js/src/landingPage.js +38 -0
- data/assets/js/src/lazyLoad.js +11 -0
- data/assets/js/src/main.js +19 -0
- data/assets/js/src/test.js +5 -0
- data/assets/scss/0-tools/_bootstrap-overrides.scss +26 -0
- data/assets/scss/0-tools/_cloudcannon.scss +17 -0
- data/assets/scss/0-tools/_content.scss +40 -0
- data/assets/scss/0-tools/_targetx-overrides.scss +76 -0
- data/assets/scss/0-tools/_vars.scss +79 -0
- data/assets/scss/1-base/_footer.scss +84 -0
- data/assets/scss/1-base/_header.scss +18 -0
- data/assets/scss/1-base/_html.scss +4 -0
- data/assets/scss/1-base/_links.scss +39 -0
- data/assets/scss/1-base/_svg.scss +57 -0
- data/assets/scss/1-base/_typography.scss +320 -0
- data/assets/scss/2-modules/_benefits.scss +270 -0
- data/assets/scss/2-modules/_breadcrumbs.scss +32 -0
- data/assets/scss/2-modules/_error.scss +20 -0
- data/assets/scss/2-modules/_nav-landing.scss +203 -0
- data/assets/scss/3-layout/_positioning.scss +50 -0
- data/assets/scss/3-layout/_thank-you.scss +24 -0
- data/assets/scss/inline.scss +3 -0
- data/assets/scss/main.scss +21 -0
- metadata +139 -0
@@ -0,0 +1,270 @@
|
|
1
|
+
.benefits__typography--h5 {
|
2
|
+
color: $primary-red;
|
3
|
+
font-family: $font-family-oswald;
|
4
|
+
font-size: 2rem;
|
5
|
+
font-weight: $font-weight-bold;
|
6
|
+
letter-spacing: .03rem;
|
7
|
+
&--mb {
|
8
|
+
margin-bottom: 40px;
|
9
|
+
}
|
10
|
+
}
|
11
|
+
|
12
|
+
@media screen and (min-width: 768px) {
|
13
|
+
.benefits__typography--h5 {
|
14
|
+
font-size: 2.8rem;
|
15
|
+
}
|
16
|
+
}
|
17
|
+
|
18
|
+
@media screen and (min-width: 992px) {
|
19
|
+
.benefits__typography--h5--mb {
|
20
|
+
margin-bottom: 60px;
|
21
|
+
}
|
22
|
+
}
|
23
|
+
|
24
|
+
.benefits__testimonials--mb {
|
25
|
+
margin-bottom: 40px;
|
26
|
+
}
|
27
|
+
|
28
|
+
@media screen and (min-width: 1200px) {
|
29
|
+
.benefits__testimonials--mb {
|
30
|
+
margin-bottom: 0;
|
31
|
+
}
|
32
|
+
}
|
33
|
+
|
34
|
+
.benefits__typography--h5--black {
|
35
|
+
color: $black;
|
36
|
+
font-family: $font-family-oswald;
|
37
|
+
font-size: 2rem;
|
38
|
+
font-weight: $font-weight-regular;
|
39
|
+
letter-spacing: .03rem;
|
40
|
+
margin-bottom: 60px;
|
41
|
+
}
|
42
|
+
|
43
|
+
@media screen and (min-width: 768px) {
|
44
|
+
.benefits__typography--h5--black {
|
45
|
+
font-size: 2.1rem;
|
46
|
+
}
|
47
|
+
}
|
48
|
+
|
49
|
+
@media screen and (min-width: 1200px) {
|
50
|
+
.benefits__typography-h5--black {
|
51
|
+
font-size: 3rem;
|
52
|
+
}
|
53
|
+
}
|
54
|
+
|
55
|
+
.benefits__typography--student-p {
|
56
|
+
font-family: $font-family-paragraph;
|
57
|
+
color: $black;
|
58
|
+
font-weight: 600;
|
59
|
+
font-size: 1.15rem;
|
60
|
+
margin-top: 15px;
|
61
|
+
margin-bottom: .5rem;
|
62
|
+
}
|
63
|
+
|
64
|
+
@media screen and (min-width: 1200px) {
|
65
|
+
.benefits__typography--student-p--larger {
|
66
|
+
font-size: 1.3rem;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.benefits__typography--img-cap {
|
71
|
+
font-family: $font-family-paragraph;
|
72
|
+
font-size: 1.35rem;
|
73
|
+
font-weight: 600;
|
74
|
+
display: block;
|
75
|
+
}
|
76
|
+
|
77
|
+
.benefits__typography-itransfer {
|
78
|
+
font-size: 1.7rem;
|
79
|
+
font-weight: 600;
|
80
|
+
line-height: 1;
|
81
|
+
position: absolute;
|
82
|
+
top: 4rem;
|
83
|
+
margin-left: -20px;
|
84
|
+
}
|
85
|
+
|
86
|
+
@media screen and (min-width: 400px) {
|
87
|
+
.benefits__typography-itransfer {
|
88
|
+
font-size: 1.8rem;
|
89
|
+
}
|
90
|
+
}
|
91
|
+
|
92
|
+
@media screen and (min-width: 768px) {
|
93
|
+
.benefits__typography-itransfer {
|
94
|
+
font-size: 1.9rem;
|
95
|
+
}
|
96
|
+
}
|
97
|
+
|
98
|
+
.benefits__typography--h6 {
|
99
|
+
color: $primary-red;
|
100
|
+
font-family: $font-family-saira;
|
101
|
+
font-weight: 700;
|
102
|
+
font-size: 2rem;
|
103
|
+
letter-spacing: .03rem;
|
104
|
+
}
|
105
|
+
|
106
|
+
.benefits__check-svg {
|
107
|
+
margin-top: -60px;
|
108
|
+
width: 80px;
|
109
|
+
}
|
110
|
+
|
111
|
+
.benefits__blue-section {
|
112
|
+
background-color: $color-blue-light;
|
113
|
+
padding-bottom: 25px;
|
114
|
+
padding-top: 25px;
|
115
|
+
}
|
116
|
+
|
117
|
+
.benefits__first-section--marg {
|
118
|
+
margin-top: 15px;
|
119
|
+
background-color: $color-blue-light;
|
120
|
+
padding-bottom: 25px;
|
121
|
+
padding-top: 25px;
|
122
|
+
}
|
123
|
+
|
124
|
+
@media screen and (min-width: 1200px) {
|
125
|
+
.benefits__first-section--marg {
|
126
|
+
margin-top: 15px;
|
127
|
+
}
|
128
|
+
}
|
129
|
+
|
130
|
+
.benefits__section--marg {
|
131
|
+
margin-top: 35px;
|
132
|
+
}
|
133
|
+
|
134
|
+
@media screen and (min-width: 1200px) {
|
135
|
+
.benefits__section--marg {
|
136
|
+
margin-top: 65px;
|
137
|
+
}
|
138
|
+
}
|
139
|
+
|
140
|
+
.benefits__row--pad {
|
141
|
+
margin-top: 25px;
|
142
|
+
}
|
143
|
+
|
144
|
+
@media screen and (min-width: 1200px) {
|
145
|
+
.benefits__row--pad {
|
146
|
+
margin-top: 0;
|
147
|
+
}
|
148
|
+
}
|
149
|
+
|
150
|
+
.benefits__itransfer-img {
|
151
|
+
width: 120px;
|
152
|
+
margin-top: 40px;
|
153
|
+
}
|
154
|
+
|
155
|
+
@media screen and (min-width: 400px) {
|
156
|
+
.benefits__itransfer-img {
|
157
|
+
width: 140px;
|
158
|
+
}
|
159
|
+
}
|
160
|
+
|
161
|
+
@media screen and (min-width: 768px) {
|
162
|
+
.benefits__itransfer-img {
|
163
|
+
width: 150px;
|
164
|
+
}
|
165
|
+
}
|
166
|
+
|
167
|
+
@media screen and (min-width: 992px) {
|
168
|
+
.benefits__itransfer-img {
|
169
|
+
margin-top: 20px;
|
170
|
+
width: 160px;
|
171
|
+
}
|
172
|
+
}
|
173
|
+
|
174
|
+
.benefits__idfpr-img {
|
175
|
+
width: 330px;
|
176
|
+
}
|
177
|
+
|
178
|
+
@media screen and (max-width: 992px) {
|
179
|
+
.benefits__idfpr-img {
|
180
|
+
margin-bottom: 15px;
|
181
|
+
margin-top: 40px;
|
182
|
+
}
|
183
|
+
}
|
184
|
+
|
185
|
+
.benefits__iccb-img {
|
186
|
+
width: 250px;
|
187
|
+
}
|
188
|
+
|
189
|
+
@media screen and (max-width: 992px) {
|
190
|
+
.benefits__iccb-img {
|
191
|
+
margin-top: 15px;
|
192
|
+
}
|
193
|
+
}
|
194
|
+
|
195
|
+
.benefits__accredited--card {
|
196
|
+
background-color: $primary-blue;
|
197
|
+
padding-bottom: 25px;
|
198
|
+
padding-left: 10px;
|
199
|
+
padding-right: 10px;
|
200
|
+
padding-top: 15px;
|
201
|
+
width: 90%
|
202
|
+
}
|
203
|
+
|
204
|
+
@media screen and (min-width: 400px) {
|
205
|
+
.benefits__accredited--card {
|
206
|
+
width: 75%;
|
207
|
+
}
|
208
|
+
}
|
209
|
+
|
210
|
+
@media screen and (min-width: 768px) {
|
211
|
+
.benefits__accredited--card {
|
212
|
+
width: 50%;
|
213
|
+
}
|
214
|
+
}
|
215
|
+
|
216
|
+
@media screen and (min-width: 992px) {
|
217
|
+
.benefits__accredited--card {
|
218
|
+
width: 100%;
|
219
|
+
}
|
220
|
+
}
|
221
|
+
|
222
|
+
@media screen and (min-width: 1200px) {
|
223
|
+
.benefits__accredited--card {
|
224
|
+
width: 75%;
|
225
|
+
}
|
226
|
+
}
|
227
|
+
|
228
|
+
.benefits__accredited--span-l {
|
229
|
+
color: $white;
|
230
|
+
font-size: 2.1rem;
|
231
|
+
font-weight: bolder;
|
232
|
+
display: block;
|
233
|
+
line-height: 1;
|
234
|
+
margin-top: -10px;
|
235
|
+
margin-bottom: 5px;
|
236
|
+
}
|
237
|
+
|
238
|
+
.benefits__accredited--span-s {
|
239
|
+
color: $white;
|
240
|
+
font-size: 1.1rem;
|
241
|
+
font-style: italic;
|
242
|
+
line-height: .5;
|
243
|
+
font-weight: 600;
|
244
|
+
letter-spacing: -.04rem;
|
245
|
+
}
|
246
|
+
|
247
|
+
.benefits__accredited--span--source {
|
248
|
+
display: block;
|
249
|
+
}
|
250
|
+
|
251
|
+
.benefits__borders--circle-img {
|
252
|
+
border: 3px solid $white;
|
253
|
+
filter: drop-shadow(5px 5px 12px #b1b1b1);
|
254
|
+
width: 50%;
|
255
|
+
}
|
256
|
+
|
257
|
+
@media screen and (min-width: 768px) {
|
258
|
+
.benefits__borders--circle-img {
|
259
|
+
width: 100%;
|
260
|
+
}
|
261
|
+
}
|
262
|
+
|
263
|
+
#page-top::before {
|
264
|
+
display: block;
|
265
|
+
content: " ";
|
266
|
+
margin-top: -60px;
|
267
|
+
height: 60px;
|
268
|
+
visibility: hidden;
|
269
|
+
pointer-events: none;
|
270
|
+
}
|
@@ -0,0 +1,32 @@
|
|
1
|
+
|
2
|
+
.breadcrumbs {
|
3
|
+
background-color: transparent; // Override the Bootstrap 4 grey background-color for the breadcrumb component.
|
4
|
+
border-bottom-color: rgba(0,0,0,.25);
|
5
|
+
border-bottom-left-radius: 0;
|
6
|
+
border-bottom-right-radius: 0;
|
7
|
+
border-bottom-style: solid;
|
8
|
+
border-bottom-width: thin;
|
9
|
+
margin-bottom: 1.5rem;
|
10
|
+
&--margin-top {
|
11
|
+
margin-top: 125px;
|
12
|
+
}
|
13
|
+
&--home {
|
14
|
+
vertical-align: bottom;
|
15
|
+
&--house {
|
16
|
+
fill: none;
|
17
|
+
stroke: $grey-1;
|
18
|
+
stroke-width: 1.5;
|
19
|
+
stroke-linejoin: round;
|
20
|
+
stroke-miterlimit: 10;
|
21
|
+
}
|
22
|
+
&--border {
|
23
|
+
fill: none;
|
24
|
+
}
|
25
|
+
}
|
26
|
+
}
|
27
|
+
|
28
|
+
// This is a Bootstrap 4 override to customize the breadcrumb divider
|
29
|
+
.breadcrumb-item+.breadcrumb-item::before { // Breadcrumb divider is a CSS pseudo-element
|
30
|
+
content: url('/assets/img/keyboard_arrow_right.svg');
|
31
|
+
opacity: .5;
|
32
|
+
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
|
2
|
+
.error__main-heading {
|
3
|
+
color: $primary-red;
|
4
|
+
font-weight: $font-weight-bold;
|
5
|
+
}
|
6
|
+
|
7
|
+
.error__sub-heading {
|
8
|
+
color: $primary-blue;
|
9
|
+
font-weight: $font-weight-bold;
|
10
|
+
}
|
11
|
+
|
12
|
+
.error__main {
|
13
|
+
min-height: 50vh;
|
14
|
+
}
|
15
|
+
|
16
|
+
@media screen and (min-width: 992px) {
|
17
|
+
.error__main {
|
18
|
+
min-height: 65vh;
|
19
|
+
}
|
20
|
+
}
|
@@ -0,0 +1,203 @@
|
|
1
|
+
.nav-landing {
|
2
|
+
background-color: $primary-red;
|
3
|
+
height: 56px;
|
4
|
+
margin-left: 0;
|
5
|
+
margin-right: 0;
|
6
|
+
max-width: 100%;
|
7
|
+
min-width: 100%;
|
8
|
+
padding-bottom: 5px;
|
9
|
+
padding-left: 5%;
|
10
|
+
padding-top: 5px;
|
11
|
+
width: 100%;
|
12
|
+
z-index: 1031;
|
13
|
+
}
|
14
|
+
|
15
|
+
.nav-landing__kcc-logo {
|
16
|
+
margin-left: 5px;
|
17
|
+
width: 190px;
|
18
|
+
}
|
19
|
+
|
20
|
+
@media screen and (min-width: 360px) {
|
21
|
+
.nav-landing__kcc-logo {
|
22
|
+
width: 220px;
|
23
|
+
}
|
24
|
+
}
|
25
|
+
|
26
|
+
@media screen and (min-width: 375px) {
|
27
|
+
.nav-landing__kcc-logo {
|
28
|
+
width: 230px;
|
29
|
+
}
|
30
|
+
}
|
31
|
+
|
32
|
+
@media screen and (min-width: 410px) {
|
33
|
+
.nav-landing__kcc-logo {
|
34
|
+
width: 255px;
|
35
|
+
}
|
36
|
+
}
|
37
|
+
|
38
|
+
@media screen and (min-width: 488px) {
|
39
|
+
.nav-landing__kcc-logo {
|
40
|
+
width: 260px;
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
@media screen and (min-width: 576px) {
|
45
|
+
.nav-landing__kcc-logo {
|
46
|
+
width: 300px;
|
47
|
+
}
|
48
|
+
}
|
49
|
+
|
50
|
+
@media screen and (min-width: 768px) {
|
51
|
+
.nav-landing__kcc-logo {
|
52
|
+
width: 320px;
|
53
|
+
}
|
54
|
+
}
|
55
|
+
|
56
|
+
@media screen and (min-width: 992px) and (max-width: 1100px) {
|
57
|
+
.nav-landing__kcc-logo {
|
58
|
+
margin-left: -25px;
|
59
|
+
width: 310px;
|
60
|
+
}
|
61
|
+
}
|
62
|
+
|
63
|
+
@media screen and (min-width: 1100px) {
|
64
|
+
.nav-landing__kcc-logo {
|
65
|
+
margin-left: -25px;
|
66
|
+
width: 340px;
|
67
|
+
}
|
68
|
+
}
|
69
|
+
|
70
|
+
.nav-landing__kcc-logo-inverse {
|
71
|
+
margin-left: -3px;
|
72
|
+
width: 50px;
|
73
|
+
margin-right: -10px;
|
74
|
+
}
|
75
|
+
|
76
|
+
@media screen and (min-width: 360px) {
|
77
|
+
.nav-landing__kcc-logo-inverse {
|
78
|
+
width: 60px;
|
79
|
+
}
|
80
|
+
}
|
81
|
+
|
82
|
+
@media screen and (min-width: 410px) {
|
83
|
+
.nav-landing__kcc-logo-inverse {
|
84
|
+
width: 68px;
|
85
|
+
}
|
86
|
+
}
|
87
|
+
|
88
|
+
@media screen and (min-width: 488px) {
|
89
|
+
.nav-landing__kcc-logo-inverse {
|
90
|
+
width: 68px;
|
91
|
+
}
|
92
|
+
}
|
93
|
+
|
94
|
+
@media screen and (min-width: 576px) {
|
95
|
+
.nav-landing__kcc-logo-inverse {
|
96
|
+
width: 73px;
|
97
|
+
}
|
98
|
+
}
|
99
|
+
|
100
|
+
@media screen and (min-width: 768px) {
|
101
|
+
.nav-landing__kcc-logo-inverse {
|
102
|
+
width: 80px;
|
103
|
+
}
|
104
|
+
}
|
105
|
+
|
106
|
+
@media screen and (min-width: 992px) {
|
107
|
+
.nav-landing__kcc-logo-inverse {
|
108
|
+
width: 80px;
|
109
|
+
margin-left: -30px;
|
110
|
+
margin-right: 20px;
|
111
|
+
}
|
112
|
+
}
|
113
|
+
|
114
|
+
@media screen and (min-width: 1100px) {
|
115
|
+
.nav-landing__kcc-logo-inverse {
|
116
|
+
width: 85px;
|
117
|
+
margin-right: 15px;
|
118
|
+
}
|
119
|
+
}
|
120
|
+
|
121
|
+
@media screen and (min-width: 1300px) {
|
122
|
+
.nav-landing__kcc-logo-inverse {
|
123
|
+
width: 85px;
|
124
|
+
margin-left: -35px;
|
125
|
+
}
|
126
|
+
}
|
127
|
+
|
128
|
+
@media screen and (min-width: 1400px) {
|
129
|
+
.nav-landing__kcc-logo-inverse {
|
130
|
+
width: 85px;
|
131
|
+
margin-left: -40px;
|
132
|
+
}
|
133
|
+
}
|
134
|
+
|
135
|
+
.nav-landing__navbar-brand {
|
136
|
+
margin-left: -10px;
|
137
|
+
}
|
138
|
+
|
139
|
+
@media screen and (min-width: 410px) {
|
140
|
+
.nav-landing__navbar-brand {
|
141
|
+
margin-left: -15px;
|
142
|
+
}
|
143
|
+
}
|
144
|
+
|
145
|
+
@media screen and (min-width: 488px) {
|
146
|
+
.nav-landing__navbar-brand {
|
147
|
+
margin-left: -20px;
|
148
|
+
}
|
149
|
+
}
|
150
|
+
|
151
|
+
@media screen and (min-width: 576px) {
|
152
|
+
.nav-landing__navbar-brand {
|
153
|
+
margin-left: -25px;
|
154
|
+
}
|
155
|
+
}
|
156
|
+
|
157
|
+
@media screen and (min-width: 768px) {
|
158
|
+
.nav-landing__navbar-brand {
|
159
|
+
margin-left: -35px;
|
160
|
+
}
|
161
|
+
}
|
162
|
+
|
163
|
+
@media screen and (min-width: 992px) {
|
164
|
+
.nav-landing__navbar-brand {
|
165
|
+
margin-left: -20px;
|
166
|
+
}
|
167
|
+
}
|
168
|
+
|
169
|
+
@media screen and (min-width: 1000px) {
|
170
|
+
.nav-landing__navbar-brand {
|
171
|
+
margin-left: -18px;
|
172
|
+
}
|
173
|
+
}
|
174
|
+
|
175
|
+
@media screen and (min-width: 1080px) {
|
176
|
+
.nav-landing__navbar-brand {
|
177
|
+
margin-left: -22px;
|
178
|
+
}
|
179
|
+
}
|
180
|
+
|
181
|
+
@media screen and (min-width: 1200px) {
|
182
|
+
.nav-landing__navbar-brand {
|
183
|
+
margin-left: -2.5%;
|
184
|
+
}
|
185
|
+
}
|
186
|
+
|
187
|
+
@media screen and (min-width: 1600px) {
|
188
|
+
.nav-landing__navbar-brand {
|
189
|
+
margin-left: -3%;
|
190
|
+
}
|
191
|
+
}
|
192
|
+
|
193
|
+
@media screen and (min-width: 1900px) {
|
194
|
+
.nav-landing__navbar-brand {
|
195
|
+
margin-left: -3.25%;
|
196
|
+
}
|
197
|
+
}
|
198
|
+
|
199
|
+
@media screen and (min-width: 2000px) {
|
200
|
+
.nav-landing__navbar-brand {
|
201
|
+
margin-left: -3.5%;
|
202
|
+
}
|
203
|
+
}
|