This commit is contained in:
2025-06-02 16:23:48 -07:00
parent 5ab6fe9ad1
commit 97342e5e1c
3 changed files with 18 additions and 1 deletions

9
dist/app.css vendored
View File

@@ -12537,6 +12537,7 @@ section.services-blocks .blocks {
gap: 1.5rem; gap: 1.5rem;
} }
section.services-blocks .block { section.services-blocks .block {
position: relative;
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
background-color: #075179; background-color: #075179;
color: #fff; color: #fff;
@@ -12560,6 +12561,14 @@ section.services-blocks .block:nth-of-type(even) svg {
section.services-blocks .block:first-of-type { section.services-blocks .block:first-of-type {
background-color: #B9AF78; background-color: #B9AF78;
} }
section.services-blocks .large-arrow {
position: absolute;
right: 1.5rem;
bottom: 1.5rem;
opacity: 0.25;
width: 40%;
height: auto;
}
@media (max-width: 991.98px) { @media (max-width: 991.98px) {
section.services-blocks .large-arrow { section.services-blocks .large-arrow {
display: none; display: none;

View File

@@ -1,4 +1,4 @@
{ {
"/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e", "/app.js": "/app.js?id=ac271f1d4ead304b5ae143995cb9455e",
"/app.css": "/app.css?id=97ed3d902fb6a22f47425089f6524862" "/app.css": "/app.css?id=3278df513f6d55d96d3340bcef193fb6"
} }

View File

@@ -15,6 +15,7 @@ section.services-blocks {
} }
.block { .block {
position: relative;
padding: 2rem 1.5rem; padding: 2rem 1.5rem;
background-color: $c-lightNavy; background-color: $c-lightNavy;
color: $c-white; color: $c-white;
@@ -46,6 +47,13 @@ section.services-blocks {
} }
.large-arrow { .large-arrow {
position: absolute;
right: 1.5rem;
bottom: 1.5rem;
opacity: 0.25;
width: 40%;
height: auto;
@include media-breakpoint-down(lg) { @include media-breakpoint-down(lg) {
display: none; display: none;
} }