*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.65em;
    color: #364151;
    /*background: #01a2ff;*/
}

a {
    text-decoration: none;
    transition: color .2s;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

p {
    margin-bottom: 1.6em;
}

p:last-child {
    margin-bottom: 0;
}

/*=== CSS VARIABLES ===*/
:root {
    --blue: #01a2ff;
    --dark: #0F172A;
    --text: #364151;
    --white: #FFFFFF;
    --near-black: rgba(7, 6, 20, 0.84);
    --border: #E1E1E1;
    --bg-dark: #eeeeee;
    --black: #000000;
    --container: 1200px;
}

/*=== TYPOGRAPHY ===*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: #0F172A;
    line-height: 1.3em;
}

h1 {
    font-size: clamp(35px, 6vw, 90px);
    line-height: 1.4em;
}

h2 {
    line-height: 1.3em;
    font-size: 2.5rem;
}

h3 {
    font-size: clamp(20px, 2.5vw, 24px);
    line-height: 1.3em;
}

h4 {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.2em;
}

/*=== BUTTONS ===*/
.e-btn {
    display: inline-block;
    padding: 15px 45px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1em;
    text-transform: uppercase;
    border: 0;
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
    text-decoration: none;
}

.e-btn-blue {
    background: var(--blue);
    color: var(--white);
}

.e-btn-blue:hover {
    background: var(--dark);
    color: var(--white);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
    border: 1px solid var(--white);
}

.e-btn-outline-blue-hover:hover {
    border-color: var(--blue);
    color: var(--white);
}

.border-white {
    border-color: var(--white);
}

.e-btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.e-btn-outline-white:hover {
    background: var(--blue);
    color: var(--dark);
    border-color: var(--blue);
}

.e-btn-outline-white-blue-hover:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--blue);
}

.e-btn-ghost {
    background: transparent;
    color: var(--text);
    padding: 0;
    border: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color .2s;
}

.e-btn-ghost:hover {
    color: var(--blue);
}

.e-btn-blue-cta {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.e-btn-blue-cta:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--blue);
}

/*=== HEADER ===*/
#masthead {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.ast-primary-header-bar {
    background: #ffffff;
    border-bottom: 1px solid rgba(235, 235, 235, 0.24);
    min-height: 70px;
    display: flex;
    align-items: center;
}

.ast-primary-header-bar.transparent {
    background: transparent;
}

.header-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.site-logo img {
    max-width: 120px;
    width: 120px;
}

.header-phone {
    color: var(--blue);
    font-size: 15px;
}

.header-phone a {
    color: var(--blue);
}

.text-primary {
    color: var(--blue);
}

.text-white {
    color: var(--white);
}

.header-phone.white {
    color: var(--white);
}

.header-phone.white a {
    color: var(--white);
}

.header-btn {
    background: var(--blue);
    color: var(--black);
    padding: 10px 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    transition: all .2s linear;
}

.header-btn:hover {
    background: var(--white);
    color: var(--black);
}

.ast-below-header-bar {
    background: transparent;
    min-height: 60px;
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.below-header-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-menu li a {
    display: block;
    padding: 0 15px;
    line-height: 60px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
}

.nav-menu li a:hover, .nav-menu li.current a {
    color: var(--blue);
}

/*=== HERO SECTION ===*/
.hero-section {
    min-height: 940px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 135px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 6, 20, 0.84) 100%, #FFFFFF 100%);
}

.hero-inner {
    position: relative;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.hero-content {
    max-width: 781px;
}

.hero-content h1 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 90px;
}

.hero-content .hero-sub {
    font-weight: bold;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    line-height: 1.3em;
    margin-bottom: 20px;
}

.hero-content .hero-text {
    color: var(--white);
    max-width: 781px;
    margin-bottom: 20px;
}

.hero-btns {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    padding-top: 40px;
}

/*=== SECTION WRAPPER ===*/
.e-section {
    width: 100%;
    position: relative;
}

.e-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/*=== SECTION 2: VOLLEDIGE CONTROLE ===*/
.section-controle {
    background: var(--white);
    display: flex;
    flex-direction: initial;
    flex-wrap: initial;
    align-items: stretch;
    justify-content: initial;
    align-content: initial;
    align-self: auto;
    flex-basis: auto;
    flex-grow: 1;
    flex-shrink: 1;
    max-width: min(100%, 1200px);
    gap: 0 0;
    height: 100%;
    margin: 0 auto;
    padding-inline-end: 0;
    padding-inline-start: 0;
    width: 100%;
}

.controle-left {
    width: 50%;
    background: var(--blue);
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    margin-top: -100px;
    position: relative;
    z-index: 1;
}

.controle-left h4 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 24px;
}

.controle-left h2 {
    color: var(--dark);
    margin-bottom: 20px;
}

.controle-left p {
    color: var(--dark);
}

.controle-right {
    width: 50%;
    display: flex;
    margin-top: -95px;
    margin-bottom: 5px;
    flex-direction: column;
    z-index: 1;
}

.feature-row {
    display: flex;
    flex-direction: row;
    flex: 1;
}

.feature-box {
    flex: 1;
    background: var(--white);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 50px;
}

.feature-box h2 {
    margin-bottom: 20px;
}

.mb-5px {
    margin-bottom: 5px !important;
}

.feature-box p {
    font-size: 100%;
    color: var(--text);
    margin: 0;
}

.section-wrapper {
    background: var(--white);
    padding: 100px 0 50px;
}

.pb-190px {
    padding-bottom: 190px !important;
}

.padding-0 {
    padding: 0 !important;
}

/*=== SECTION 3: BOUWEN AAN DE TOEKOMST ===*/
.toekomst-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.toekomst-header-left h4 {
    font-size: 24px;
    margin-bottom: 24px;
}

.toekomst-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-transform: capitalize;
    margin-top: 70px;
}

.img-row {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.img-row + .img-row {
    margin-top: 50px;
}

.img-card {
    flex: 0 0 33.33%;
    max-width: 33.33%;
}

.img-card img {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    margin-bottom: 10px;
}

.img-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.img-card p {
    font-size: 15px;
    color: var(--text);
    margin: 0;
}

/*=== SECTION 4: DOORDACHT SPLIT ===*/
.section-split {
    display: flex;
    flex-direction: row;
}

.split-left-img {
    width: 50%;
    min-height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 0 50px 180px 50px;
    align-items: flex-end;
    display: flex;
    justify-content: center;
}

.split-left-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(7, 6, 20, 0.7);
}

.split-left-content {
    position: relative;
    color: var(--white);
    width: 500px;
}

.split-left-content .tag {
    font-weight: 400;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
}

.split-left-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.split-left-content p {
    color: var(--white);
}

.split-left-content .btn-area {
    padding-top: 50px;
}

.split-right-img {
    width: 50%;
    background-position: top center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    padding: 80px 50px;
    display: flex;
    align-items: flex-end;
}

.split-right-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(1, 162, 255, 0.81);
}

.split-right-content {
    position: relative;
}

.split-right-content .spacer {
    height: 7px;
}

.split-right-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.split-right-content p {
    color: var(--dark);
    margin-bottom: 20px;
}

.split-right-content .icon-list {
    list-style: none;
    margin: 10px 0 0;
}

.split-right-content .icon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 20px;
    font-weight: bold;
    padding: 10px 0;
}

.split-right-content .icon-list li i {
    color: var(--dark);
    font-size: 20px;
    min-width: 20px;
}

/*=== SECTION 5: JBB INFO (white) ===*/
.info-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.info-left {
    width: 50.876%;
    padding-right: 40px;
}

.info-left h4 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 5px;
}

.info-left h2 {
    margin-bottom: 20px;
}

.info-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.info-right p {
    color: var(--text);
    margin-bottom: 1em;
}

/*=== SECTION 6: CONTROLE (white) ===*/
.controle2-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.controle2-left {
    width: 50.876%;
    padding-right: 40px;
}

.controle2-left h4 {
    font-size: 24px;
    margin-bottom: 5px;
}

.controle2-right {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.controle2-right p {
    color: var(--text);
    margin-bottom: 1em;
}

/*=== SECTION 7: BLUE CTA CARDS ===*/
.section-cta-cards {
    background: var(--blue);
    padding: 0 0 60px;
}

.cta-cards-wrap {
    padding: 0 40px;
}

.cta-cards-row {
    display: flex;
    flex-direction: row;
}

.cta-card-box {
    flex: 1;
    border: 1px solid var(--border);
    margin: 10px;
    padding: 50px;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cta-card-box h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 7px;
    color: #080808;
}

.cta-card-box p {
    color: var(--white);
    font-size: 15px;
    margin-bottom: 0;
}

.cta-card-box ol {
    color: var(--dark);
    padding-left: 20px;
    font-size: 15px;
    line-height: 2;
    margin: 0;
}

.cta-card-btn {
    padding-top: 30px;
}

.cta-center-btn {
    text-align: center;
    padding-top: 10px;
}

/*=== SECTION 8: WAAROM JBB (blue) ===*/
.section-waarom {
    padding: 10px 0 60px;
}

.bg-blue {
    background: var(--blue);
}

.bg-white {
    background: var(--white);
}

.bg-linear-blue-white {
    background: linear-gradient(90deg, var(--blue) 50%, var(--white) 50%);
}

.waarom-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
    justify-content: center;
    align-items: center;
    align-content: flex-start;
    flex-wrap: wrap;
}

.waarom-col {
    flex: 1;
    padding: 0 25px;
    max-width: 685px;
    width: 100%;
}

.waarom-col h4 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.waarom-col h2 {
    text-align: center;
    margin-bottom: 20px;
}

.waarom-col p {
    font-size: 15px;
    margin-bottom: 1.6em;
}

/*=== SECTION 10: PROJECT PHOTOS (gradient) ===*/
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.projects-grid .project-photo {
    width: calc(33.33% - 10px);
}

.project-photo {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 50px 100px 50px 50px;
    margin: 10px;
}

.project-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0706146b 29%, #00000000 40%);
}

.project-photo-content {
    position: relative;
}

.project-photo-content h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 0;
}

.project-photo-content p {
    color: var(--white);
    margin: 0;
    font-size: 15px;
}

.projects-btn-wrap {
    text-align: center;
    padding-top: 20px;
}

/*=== SECTION 11: FLORA & FAUNA (white) ===*/
.flora-grid {
    display: flex;
    flex-direction: row;
    gap: 0;
}

.flora-left {
    width: 50.876%;
    padding-right: 40px;
}

.flora-left h4 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 5px;
}

.flora-left h2 {
    margin-bottom: 20px;
}

.flora-right {
    flex: 1;
}

.flora-right p {
    color: var(--text);
    margin-bottom: 1em;
}

.species-row {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.species-card {
    flex: 1;
    min-height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 30px 50px 30px 50px;
}

.species-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0706146b 29%, #00000000 40%);
}

.species-card-title {
    position: relative;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 1.3em;
    margin: 0;
}

/*=== SECTION 12: PROJECTCONTROL BEGINT (white) ===*/
.section-projectcontrol {
    background: var(--white);
    padding: 100px 0 190px;
    text-align: center;
}

.section-projectcontrol h4 {
    font-weight: 200;
    font-size: 24px;
    margin-bottom: 20px;
}

.section-projectcontrol h2 {
    color: var(--dark);
}

/*=== SECTION 13: CONTACT FORM (blue+dark) ===*/
.section-contact-outer {
    background: var(--blue);
    padding: 0 0 150px;
}

.contact-box {
    display: flex;
    flex-direction: row;
    position: relative;
    z-index: 2;
}

.contact-form-side {
    width: 50%;
    background: var(--dark);
    margin-top: -155px;
    padding: 64px;
}

.contact-form-side h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.contact-form-side > p {
    color: var(--white);
    margin-bottom: 0;
}

.wpforms-field-container {
    margin-top: 20px;
}

.wpf-label {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    color: #6A6A6A;
    margin-bottom: 6px;
}

.font-bold {
    font-weight: 600;
}

.wpf-required {
    color: #ff0000;
}

.wpf-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    max-width: 60%;
}

.wpf-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: calc(50% - 10px);
}

.wpf-field {
    color: #666;
    padding: .75em;
    height: auto;
    border: 1px solid #01a2ff;
    border-radius: 2px;
    background: #fafafa;
    box-shadow: none;
    box-sizing: border-box;
    transition: all .2s linear;
    line-height: 1.65em;
}

.wpf-field:focus {
    border-style: dotted;
    border-color: inherit;
    border-width: thin;
}

.wpf-field::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.wpf-textarea {
    height: 120px;
    resize: vertical;
}

.wpf-group {
    margin-bottom: 20px;
    max-width: 60%;
    display: flex;
    flex-direction: column;
}

.wpf-submit {
    background: var(--blue);
    color: var(--white);
    border: none;
    padding: 15px 45px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 10px;
    transition: background .2s;
}

.wpf-submit:hover {
    background: #0086d4;
}

.contact-review-side {
    width: 50%;
    background: var(--blue);
    padding: 50px 50px 50px 100px;
}

.contact-review-side h4 {
    font-weight: 400;
    color: var(--blue);
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    margin-bottom: 5px;
}

.contact-review-side h2 {
    margin-bottom: 20px;
    color: var(--white);
}

/* Accordion */
.acc-tabs {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.acc-item {
}

.acc-title-row {
    background: var(--blue);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: var(--text);
    border: none;
    width: 100%;
    text-align: left;
    transition: background .2s;
}

.acc-title-row.active {
    color: var(--dark);
}

.acc-icon {
    font-size: 14px;
}

.acc-body {
    display: none;
    padding: 0 20px 20px;
    background: var(--blue);
    font-size: 15px;
    color: var(--dark);
    line-height: 1.7;
}

.acc-body.open {
    display: block;
}

/*=== FOOTER ===*/
.site-footer {
    background: var(--dark);
}

.footer-primary {
    padding: 100px 20px 45px;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-grid {
    display: flex;
    flex-direction: row;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col-logo {
    flex: 1.5;
}

.footer-col h5 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul a {
    color: var(--white);
    font-size: 15px;
}

.footer-col ul a:hover {
    color: var(--blue);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    font-style: italic;
}

.footer-col p em {
    color: rgba(255, 255, 255, 0.75);
    display: block;
}

.footer-below {
    border-top: 1px solid rgba(195, 193, 193, 0.27);
    min-height: 80px;
    background: rgba(7, 6, 20, 0.84);
    display: flex;
    align-items: center;
}

.footer-below-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: var(--white);
    font-size: 14px;
}

/*=== SPACER for fixed header ===*/
.header-spacer {
    height: 90px;
}

.text-center {
    text-align: center !important;
}

/*=== RESPONSIVE ===*/
@media (max-width: 1024px) {
    .section-controle {
        flex-direction: column;
    }

    .controle-left {
        width: 100%;
        margin-top: 0;
    }

    .controle-right {
        width: 100%;
    }

    .section-split {
        flex-direction: column;
    }

    .split-left-img, .split-right-img {
        width: 100%;
        min-height: 400px;
    }

    .info-grid, .controle2-grid, .flora-grid {
        flex-direction: column;
    }

    .info-left, .controle2-left, .flora-left {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }

    .img-row {
        flex-direction: column;
        gap: 30px;
    }

    .img-card {
        padding: 0;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .projects-grid {
        flex-direction: column;
    }

    .project-photo {
        min-height: 350px;
        padding: 30px;
    }

    .projects-grid .project-photo {
        width: calc(100% - 10px);
    }

    .species-row {
        flex-direction: column;
    }

    .species-card {
        min-height: 280px;
    }

    .contact-box {
        flex-direction: column;
    }

    .contact-form-side, .contact-review-side {
        width: 100%;
    }

    .contact-review-side {
        padding: 50px;
    }

    .footer-grid {
        flex-wrap: wrap;
    }

    .cta-cards-row {
        flex-direction: column;
    }

    .cta-card-box {
        margin: 5px 10px;
    }

    .waarom-grid {
        flex-direction: column;
        gap: 40px;
    }

    .waarom-col {
        padding: 0;
    }
}

@media (max-width: 767px) {
    .header-phone {
        display: none;
    }

    .feature-box {
        padding: 25px;
    }

    .feature-box p {
        font-size: 14.592px;
    }

    .e-container {
        padding: 50px 25px;
    }

    .section-wrapper {
        padding: 0;
    }

    .toekomst-header-right {
        margin-top: 0;
    }

    .toekomst-header-left h4 {
        font-size: 21.888px;
    }

    .toekomst-header-left h2 {
        line-height: unset;
    }

    .wpf-row {
        max-width: 100%;
    }

    .wpf-group {
        max-width: 100%;
    }

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    .hero-section {
        min-height: auto;
        padding: 100px 25px 80px;
    }

    .feature-row {
        flex-direction: column;
    }

    .toekomst-header {
        flex-direction: column;
        gap: 10px;
    }

    .controle-left, .contact-form-side {
        padding: 25px;
    }

    .contact-form-side {
        margin-top: 0;
    }

    .contact-review-side {
        padding: 30px 25px;
    }

    .img-card {
        padding: 0;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .section-projects {
        background: var(--blue) !important;
    }

    .footer-grid {
        flex-direction: column;
    }

    .footer-primary {
        padding: 50px 25px;
    }

    .cta-cards-wrap {
        padding: 0 10px;
    }
}
