.light-blue-bar::before {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #123e69;
    clip-path: polygon(0 0px, 100% 0px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

.light-blue-bar::after {
    content: "";
    position: absolute;          /* fixed to viewport so it spans the screen */
    top: 0;
    left: 50%;                /* start at the horizontal center */
    transform: translateX(-50%); /* shift back by half its width */
    width: 100vw;             /* span entire viewport width */
    min-width: 1250px;
    height: 100%;             /* or desired height */
    z-index: -1;
    background-color: #7898b6;
    clip-path: polygon(
        0 100%,
        50% calc(100% - 80px),
        100% 100%,
        50% calc(100% - 40px),
        0 100%
    );
}

.blue-bar::before {
    clip-path: polygon(0 40px, 50% 0px, 100% 40px, 100% 100%, 0 100%);
}

.blue-bar {
    padding-top: 70px;
}







h3 {
    color:#123e69; 
}









.section-blue a:hover p {
    color:white;
}

.blue-bar-section {
    display: flex;
    position: absolute; 
    width: 100vw;
    z-index: 1;
    background-color: #123e69;
    clip-path: polygon(0 40px, 50% 0, 100% 40px, 100% 100%, 50% calc(100% - 40px), 0 100%);
}

a:hover p {
    color:#123e69;
    cursor: pointer;
}

#contact-holder p {
    padding: 10px;
    padding-left: 15px;
    font-size: 30px;
    font-weight:normal; 
    color:#f00;
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding-bottom: 20px;
    margin-top:0px;
    display: inline-block;
}

#contact-holder a:hover p {
    filter: brightness(2);
    text-decoration: underline;
}

a:hover p {
    color:#123e69;
    text-decoration: underline;
}

#contact-holder h3 {
    padding: 10px;
    padding-left: 15px;
    font-size:30px; 
    font-weight:bold; 
    color:#616161; 
    font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin-bottom:3px;
    margin-top:15px;
    display: inline-block;
}