/* ============================================================
   SEABROOKS e-CImpact LANDING PAGE — style.css
   Fonts: Raleway Medium (500) & Raleway Bold (700)
   Colors matched to seabrooks.com & design.png
   ============================================================ */

/* ---------- ROOT VARIABLES ---------- */
:root {
    --font-primary: 'Raleway', sans-serif;
    --color-navy: #1B3A5C;
    --color-navy-dark: #142D48;
    --color-green: #5B9A3C;
    --color-green-dark: #4A8530;
    --color-teal: #2AAFC3;
    --color-blue: #2B7CB4;
    --color-blue-light: #3A8FCA;
    --color-purple-hover: #AB499C;
    --color-orange: #E8A63A;
    --color-body-text: #4A4A4A;
    --color-heading: #1B3A5C;
    --color-light-bg: #F7F9FC;
    --color-white: #ffffff;
    --color-footer-bg: #1A2E44;
    --color-footer-bottom: #142538;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}

/* ---------- RESET & BASE ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-body-text);
    background-color: var(--color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-heading);
    line-height: 1.3;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

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

/* ---------- SITE HEADER (Navbar + Wave) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1050;
}

.header-wave {
    margin-top: -6px;
}

/* ---------- NAVBAR ---------- */
#mainNavbar {
    background-color: #21529B;
    padding: 5px 0;
    transition: var(--transition);
    z-index: 1050;
    padding-top: 30px;
}

.logo-img {
    height: 44px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.nav-title-container {
    width: 100%;
    text-align: center;
    padding: 10px 0 5px;
    order: 3;
}

.nav-main-title {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    text-decoration: none;
    line-height: 28px;
    display: inline-block;
    transition: var(--transition);
    margin-bottom: 12px;
    margin-top: 12px;
    line-height: 70px;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nav-main-title:hover {
    color: var(--color-green);
    text-decoration: none;
}

/* Centered nav text */
.nav-center-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.nav-center-text .nav-link {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--color-white);
    padding: 0;
    white-space: nowrap;
}

.nav-center-text .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.btn-demo {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 18px;
    color: #008ABF;
    background-color: #fff;
    padding: 8px 22px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    line-height: normal;
    border-radius: 22px;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #ACCE6F;
    transition: left 0.35s ease;
    z-index: -1;
}

.btn-demo:hover::before {
    left: 0;
}

.btn-demo:hover {
    color: var(--color-white) !important;
    border-color: var(--color-purple-hover);
    transform: translateY(-1px);
}

/* ---------- HERO SECTION ---------- */
.hero-section {
    padding-top: 40px;
    padding-bottom: 0px;
    background-color: var(--color-white);
}

.hero-layout {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.badge-intro {
    display: inline-block;
    font-family: 'Raleway';
    font-weight: 800;
    font-size: 16px;
    color: var(--color-blue);
    letter-spacing: 12px;
    text-transform: uppercase;
    margin-bottom: 8px;
    line-height: 60px;
}

.hero-logo-wrap {
    margin-bottom: 15px;
}

.hero-ecimpact-logo {
    max-width: 100%;
    width: 300px;
    height: auto;
}

.hero-subtitle {
    font-size: 26px;
    font-weight: 700;
    color: #AB499C;
    margin-bottom: 8px;
    line-height: 60px;
}

.hero-title {
    font-size: 34px;
    font-weight: 700;
    color: #195593;
    line-height: 1.25;
    margin-bottom: 10px;
}

.hero-text {
    font-size: 20px;
    font-weight: 500;
    color: #6D6E6F;
    line-height: 1.55;
    margin-bottom: 0;
}

.hero-image-wrap {
    border-radius: 10px 60px 10px 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.hero-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- WAVE DIVIDERS ---------- */
.wave-divider {
    width: 100%;
    line-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.wave-divider .wave-img {
    width: 100%;
    height: auto;
    display: block;
}

/* ---------- SECTION TITLES ---------- */
.section-title {
    font-size: 38px;
    font-weight: 700;
    color: #104C97;
    margin-bottom: 15px;
    line-height: 1.35;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #6D6E6F;
    margin: 0 auto 20px;
    line-height: 36px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
    background-color: var(--color-blue);
    padding: 10px 30px;
    border-radius: 4px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ---------- MISSION SECTION ---------- */
.mission-section {
    padding: 50px 0 40px;
    /* background-color: var(--color-light-bg); */
}

.mission-header {
    margin-bottom: 10px;
}

.mission-image-wrap {
    border-radius: 120px 10px 120px 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.mission-image-wrap:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-lg);
}

.mission-card {
    background-color: var(--color-white);
    /* border: 3px solid #ff0000; */
    padding: 20px 35px;
    height: 100%;
}

.mission-card-title {
    font-size: 46px;
    font-weight: 800;
    color: #AB499C;
    margin-bottom: 20px;
    line-height: 56px;
}

.mission-card-text {
    font-size: 22px;
    font-weight: 500;
    color: #6D6E6F;
    margin-bottom: 20px;
    line-height: 24px;
}

/* ---------- CHECK LISTS ---------- */
.check-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.check-list li {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: #104C97;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.check-list-icon {
    width: 28px;
    height: 28px;
    /*mask: url('../images/circle-check-regular.svg') no-repeat center;
    -webkit-mask: url('../images/circle-check-regular.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: #AB499C;
    flex-shrink: 0;*/
    background:url('../images/circle-check-regular.svg') no-repeat center;
    background-size:contain;
}

.check-list.green-checks li i {
    color: var(--color-green);
}

/* Colored checks for pricing */
.check-list.colored-checks .check-blue {
    color: var(--color-blue);
}

.check-list.colored-checks .check-green {
    color: var(--color-green);
}

.check-list.colored-checks .check-orange {
    color: var(--color-orange);
}

/* ---------- PRIMARY CUSTOM BUTTON ---------- */
.btn-primary-custom {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 14px;
    color: var(--color-white);
    background-color: var(--color-green);
    border: 2px solid var(--color-green);
    padding: 10px 28px;
    border-radius: 4px;
    letter-spacing: 0.3px;
    transition: var(--transition);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--color-purple-hover);
    transition: left 0.35s ease;
    z-index: -1;
}

.btn-primary-custom:hover::before {
    left: 0;
}

.btn-primary-custom:hover {
    color: var(--color-white);
    border-color: var(--color-purple-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(171, 73, 156, 0.3);
}

.btn-card-center {
    background-color: #008ABF;
    border: none;
    border-radius: 50px 10px 50px 10px;
    padding: 20px 40px;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    display: block;
    width: fit-content;
    margin: 40px auto 0;
    text-align: center;
    transition: var(--transition);
}

.btn-card-center:hover {
    background-color: #AB499C;
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- NEW STACK SECTIONS (SUBMITTABLE & FOUNDANT) ---------- */
/* ---------- CONTAINER OVERRIDES FOR DESIGN MATCH ---------- */
.container {
    max-width: 1320px; /* Bootstrap default for xxl */
    padding-left: 20px;
    padding-right: 20px;
}

/* ---------- STACK SECTIONS FLEX LAYOUT ---------- */
.stack-flex-container {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 65px; /* Reduced gap from 100px to match design proportions better */
}

.stack-flex-content {
    flex: 1.5; /* Increased content ratio so text doesn't wrap too early */
    min-width: 300px;
}

.stack-flex-image {
    flex: 1;
    min-width: 300px;
}

.stack-section-blue {
    background-color: #008ABF;
    position: relative;    
    z-index: 2;
    padding: 0;
}

.stack-section-navy {
    background-color: #104C97;
    position: relative;    
    z-index: 2;
    padding-bottom: 20px;
    padding-top: 25px;
}

.stack-section-white {
    background-color: #fff;
    padding-top: 80px;
    position: relative;
    padding-bottom: 30px;
}

.stack-text-gray {
    color: #6D6E6F;
    font-size: 24px;
    line-height: 36px;
    margin-bottom: 30px;
}

.stack-header-text {
    position: relative;
    z-index: 10;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 24px;
    color: #fff;
    letter-spacing: 8px;
    text-align: left;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
}

.stack-title-white {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    line-height: 42px;
}

.stack-title-blue {
    font-size: 36px;
    font-weight: 800;
    color: #104C97;
    margin-bottom: 30px;
}

.stack-text-white {
    font-size: 22px;
    font-weight: 400;
    color: #fff;
    line-height: 36px;
    margin-bottom: 25px;
}

.stack-text-gray.fw-bold {
    margin-bottom: 10px;
}

.stack-text-white.second {
    margin-bottom: 0px;
}

/* Custom Check List */
.check-list-custom {
    list-style: none;
    padding: 0;
    /* margin: 20px 0; */
}

.check-list-custom li {
    font-size: 22px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    line-height: normal;
    margin-bottom: 20px;
}

.check-list-custom.white-text li {
    color: #fff;
}

.check-list-custom.blue-text li {
    color: #104C97;
}

.check-icon-gold {
    width: 32px;
    height: 32px;
    mask: url('../images/circle-check-regular.svg') no-repeat center;
    -webkit-mask: url('../images/circle-check-regular.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: #A7C45B;
    /* Gold color */
    flex-shrink: 0;
}

/* Image Curvatures */
.stack-image-wrap-custom {
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.img-curve-right {
    border-radius: 120px 10px 120px 10px;
}

.img-curve-left {
    border-radius: 120px 10px 120px 10px;
}

/* Wave Overrides */
.flip-y {
    transform: scaleY(-1);
}

.divider-top {
    margin-bottom: -5px;
}

.divider-bottom {
    margin-top: -5px;
}

.divider-bottom-foundant {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

/* ---------- ONE PLATFORM SECTION ---------- */
.platform-section {
    background-color: #ffffff;
    padding: 90px 0 70px;
}

.platform-header {
    margin-bottom: 55px;
}

.platform-title {
    font-size: 58px;
    font-weight: 700;
    color: #104C97;
    line-height: 60px;
    margin-bottom: 20px;
}

.platform-subtitle {
    font-size: 22px;
    font-weight: 500;
    color: #6D6E6F;
    margin-bottom: 0;
    line-height: 34px;
}

.platform-layout {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.platform-content {
    flex: 1.15;
    min-width: 320px;
}

.platform-media {
    flex: 1;
    min-width: 320px;
    text-align: center;
}

.platform-lead {
    font-size: 46px;
    font-weight: 800;
    color: #AB499C;
    margin-bottom: 18px;
    line-height: 36px;
}

.platform-text {
    font-size: 24px;
    font-weight: 500;
    color: #6D6E6F;
    line-height: 36px;
    margin-bottom: 20px;
}

.platform-checklist {
    list-style: none;
    padding: 0;
    margin: 18px 0 22px;
}

.platform-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 14px;
}

.platform-checklist li span:last-child {
    font-size: 24px;
    font-weight: 700;
    color: #104C97;
    line-height: 1.45;
}

.check-icon-purple {
    width: 40px;
    height: 40px;
    margin-top: 2px;
    mask: url('../images/circle-check-regular.svg') no-repeat center;
    -webkit-mask: url('../images/circle-check-regular.svg') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    background-color: #AB499C;
    flex-shrink: 0;
}

.platform-image {
    overflow: hidden;
    border-radius: 120px 10px 120px 10px;
    box-shadow: var(--shadow-md);
    margin: 0 auto 28px;
    max-width: 520px;
}

.platform-cta {
    display: inline-block;
    margin: 0 auto;
    margin-top: 30px;
}

/* ---------- FAQ SECTION ---------- */
.faq-section {
    background-color: #ffffff;
    padding: 90px 0 80px;
}

.faq-layout {
    display: flex;
    align-items: flex-start;
    gap: 70px;
}

.faq-media {
    flex: 1;
    min-width: 320px;
}

.faq-content {
    flex: 1.2;
    min-width: 320px;
}

.faq-image-wrap {
    overflow: hidden;
    border-radius: 120px 10px 120px 10px;
    box-shadow: var(--shadow-md);
}

.faq-title {
    font-size: 40px;
    font-weight: 600;
    color: #AB499C;
    margin-bottom: 0;
    line-height: 47px;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #E6E6E6;
    background-color: transparent;
}

.faq-accordion .accordion-button {
    padding: 18px 0;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: #104C97;
    background-color: transparent;
    box-shadow: none;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 15px;
}

.faq-icon-wrap {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    flex-shrink: 0;
}

.faq-icon-img {
    width: 26px;
    height: 26px;
}

.faq-accordion .accordion-button::after {
    display: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: #104C97;
    background-color: transparent;
}

.faq-accordion .accordion-body {
    padding: 0 0 18px 47px;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 21px;
    line-height: 36px;
    color: #6D6E6F;
}

/* ---------- SELECTION COLOR ---------- */
::selection {
    background-color: var(--color-green);
    color: var(--color-white);
}

::-moz-selection {
    background-color: var(--color-green);
    color: var(--color-white);
}

/* ---------- SCROLLBAR (webkit) ---------- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--color-green);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-navy);
}

/* footer section */
.solution-bottom-sec {
    background: #008ABF;
    padding: 100px 20px 140px;
}

.solution-bottom-sec h2 {
    margin-bottom: 50px;
    font-size: 60px;
    line-height: 1.1;
    font-weight: 700;
}

.solution-bottom-sec .footer-btn {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #008ABF !important;
    text-align: center;
    min-width: 280px;
    padding: 25px 40px;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px 10px 50px 10px;
    background-color: #fff;
    position: relative;
    width: auto;
    height: auto;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    z-index: 1;
}

.solution-bottom-sec .footer-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.solution-bottom-sec .footer-btn span {
    position: relative;
    z-index: 2;
}

/* --- SITE FOOTER --- */
.site-footer {
    background-color: #104C97;
    position: relative;
    margin-top: -100px; /* Overlap with wave if needed */
}

.footer-wave-container {
    line-height: 0;
    width: 100%;
    background-color: #008ABF; /* Match section above */
}

.footer-wave {
    width: 100%;
    display: block;
}

.footer-main-content {
    background-color: #3E70AC;
    padding: 80px 0 60px;
}

.footer-logo-white {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-contact-info p {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px;
}

.footer-contact-info a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer-contact-info a:hover {
    opacity: 0.7;
}

.btn-footer-contact {
    display: inline-block;
    background-color: #ACCE6F;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 70px;
    border-radius: 30px 5px 30px 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 47px;
}

.btn-footer-contact:hover {
    background-color: #96ba56;
    transform: translateY(-3px);
    color: #fff;
}

.footer-newsletter-wrap h4 {
    letter-spacing: 1px;
    font-size: 30px;
    line-height: 35px;
}

.footer-newsletter-form .input-group {
    background: #fff;
    border-radius: 5px 20px 5px 20px;
    overflow: hidden;
    padding: 0px;
    max-width: 500px;
}

.footer-newsletter-form .form-control {
    border: none;
    padding: 7px 20px;
    font-size: 20px;
    box-shadow: none !important;
    color: #6D6E6F;
    line-height: 40px;
    font-weight: 500;
    opacity: 0.5;
}

.footer-newsletter-form .btn-envelope {
    background-color: #008ABF;
    color: #fff;
    border: none;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px !important;
    font-size: 20px;
    transition: background 0.3s;
    border-radius: 0px 20px 5px 0px !important;
    padding: 0;
}

.footer-newsletter-form .btn-envelope:hover {
    background-color: #0076a3;
    color: #fff;
}

.footer-social-links img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s;
}

.footer-social-links a:hover img {
    transform: translateY(-5px);
}

.footer-bottom-bar {
    background-color: #0F4C97;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom-bar p, 
.footer-legal-links a, 
.footer-legal-links span {
    font-size: 14px;
}

.footer-legal-links a:hover {
    opacity: 1;
    color: #ACCE6F !important;
}

.site-footer .ft-txt {
    font-size: 24px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 35px;
}

.top-sub{
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 22px;
    color: var(--color-white);
    text-decoration: none;
    line-height: 28px;
    display: inline-block;
    transition: var(--transition);
    margin-bottom: 12px;
    margin-top: 12px;
    line-height: 70px;
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.top-sub:hover{
    color: #fff;
}

/* wave generator */

/* wave-light-blue-top */

.wave-light-blue-top {  
    height: 18vh;
    background-color: #ffffff;
    position: relative;
}

.wave-light-blue-top::before {   
    content: "";
    width: 100%;
    height: 129px;
    position: absolute;
    bottom: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 26vw bottom;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 1C19.5523 2 32.2291 3 51.5 5C104.5 11 200 25 300 39C400 53 500 66 600 61C700 55 800 31 900 18C987.526 3 1085.36 -1 1150 0C1169.54 -1 1180.49 0 1200 1V80H1150C1100 80 1000 80 900 80C800 80 700 80 600 80C500 80 400 80 300 80C200 80 100 80 50 80H0V1.98128Z' fill='%23008abf'/></svg>");
}

/* wave-light-blue-bottom */
.wave-light-blue-bottom {
    height: 129px;
    background-color: #ffffff;
    position: relative;
    padding-bottom: 20px;
    padding-top: 25px;
}

.wave-light-blue-bottom::before {
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    top: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: -30vw top;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 79C19.5523 78 32.2291 77 51.5 75C104.5 69 200 55 300 41C400 27 500 14 600 19C700 25 800 49 900 62C987.526 77 1085.36 81 1150 80C1169.54 81 1180.49 80 1200 79V0H1150C1100 0 1000 0 900 0C800 0 700 0 600 0C500 0 400 0 300 0C200 0 100 0 50 0H0V78.0187Z' fill='%23008abf'/></svg>");
}

/* wave-blue-top */

.wave-blue-top {  
    height: 18vh;
    background-color: #ffffff;
    position: relative;
}

.wave-blue-top::before {   
    content: "";
    width: 100%;
    height: 129px;
    position: absolute;
    bottom: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: 26vw bottom;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 1C19.5523 2 32.2291 3 51.5 5C104.5 11 200 25 300 39C400 53 500 66 600 61C700 55 800 31 900 18C987.526 3 1085.36 -1 1150 0C1169.54 -1 1180.49 0 1200 1V80H1150C1100 80 1000 80 900 80C800 80 700 80 600 80C500 80 400 80 300 80C200 80 100 80 50 80H0V1.98128Z' fill='%23104C97'/></svg>");
}

/* wave-light-blue-bottom */
.wave-blue-bottom {
    height: 129px;
    background-color: #ffffff;
    position: relative;
}

.wave-blue-bottom::before {
    content: "";
    width: 100%;
    height: 150px;
    position: absolute;
    top: -0.3%;
    left: 0;
    background-size: auto;
    background-repeat: repeat no-repeat;
    background-position: -30vw top;
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1200 80' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0 79C19.5523 78 32.2291 77 51.5 75C104.5 69 200 55 300 41C400 27 500 14 600 19C700 25 800 49 900 62C987.526 77 1085.36 81 1150 80C1169.54 81 1180.49 80 1200 79V0H1150C1100 0 1000 0 900 0C800 0 700 0 600 0C500 0 400 0 300 0C200 0 100 0 50 0H0V78.0187Z' fill='%23104C97'/></svg>");
}