:root {
    --color: #227B8B;
    --blur-1-size: clamp(400px, 60vw, 60vw);
    --blur-2-size: clamp(300px, 40vw, 40vw);
    --blur-3-size: clamp(100px, 10vw, 10vw);
    --blur-amount: clamp(40px, 5vw, 90px);
}

main {
    margin-top: 0 !important;
}

.wp-site-blocks {
    overflow-x: hidden;
}

.wp-block-group.bid-hero {
    position: relative;
}

.wp-block-group.bid-hero h2 {
    font-family: "Noto Sans";
    font-weight: 500;
    color: var(--wp--preset--color--secondary);
    opacity: 0.9;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

.wp-block-group.bid-hero p {
    margin-top: -0.25rem;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
}

#key-points {
    @media (max-width: 1350px)  {
        background-image: none !important;
    }
}

#key-points .wp-block-columns div:first-child {
    @media (max-width: 1350px)  {
        display: none !important;
    }
}

h2 strong {
    font-family: "Noto Sans";
    font-weight: 500;
    color: var(--wp--preset--color--secondary);
}

.wp-block-group.icon-grid {

}

.wp-block-group.testimonial {
    background-color: #d6e4e7;
}
.wp-block-group.testimonial .wp-block-heading {
    padding: .5em 1em;
}
.wp-block-group.testimonial .wp-block-quote p {
    opacity: 0.9;
}
.wp-block-quote {
    border: none;
    padding-top: 0;
    padding-left: 0;
}
.wp-block-quote cite {
    font-size: 18px;
    font-weight: 500;
    color: var(--wp--preset--color--primary);
}
.wp-block-group.testimonial .wp-block-image {
    @media (max-width: 781px)  {
        margin-right: 0 !important;
        text-align: center;
    }
}
.wp-block-group.testimonial .wp-block-group {
    @media (max-width: 781px)  {
        text-align: center;
        align-items: center;
    }
}
.wp-block-group.testimonial .wp-block-heading {
    @media (max-width: 781px)  {
        text-align: center;
    }
}
.wp-block-group.testimonial .wp-block-quote {
    @media (max-width: 781px)  {
        padding-right: 0;
    }
}


.gform_button {
    border-radius: 25px !important;
    font-weight: 500;
    font-size: 16px !important;
    padding-top: 1rem !important;
    padding-right: 2.25rem !important;
    padding-bottom: 1rem !important;
    padding-left: 2.25rem !important;
}

.gform_button, .btn--triangle a {
    transition: transform .18s ease, opacity .18s;
    transform: scale(1);
}
.gform_button:hover, .btn--triangle a:hover {
    transform: scale(1.05);
}
.btn--triangle a::after {
    content: "";
    display: inline-block;
    margin-left: 1rem;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: calc(7px * 1.4) solid #fff;
    /* pointer-events none keeps the button clickable */
    pointer-events: none;
    transition: transform .18s ease, opacity .18s;
    transform: translateX(0);
    opacity: 1;
}
.btn--triangle a:hover::after {
    transform: translateX(5px);
}

footer > div {
    padding-top: 0 !important;
}

footer .wp-block-navigation .wp-block-navigation-item .wp-block-navigation-item__content {
    font-weight: 500;
    color: var(--wp--preset--color--primary);
}

.wp-block-list {
    list-style: none;
    padding-left: 0; /* remove default indent so we can control with pseudo */
}
.wp-block-list > li {
    position: relative;
    padding-left: 1.25rem; /* space for the triangle */
}
.wp-block-list > li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em; /* vertically align roughly to midline of text */
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: calc(6px * 1.4) solid var(--wp--preset--color--primary);
}

/* Match the button triangle style for white-on-colored backgrounds */
.has-primary-background-color .wp-block-list > li::before,
.wp-block-group.has-primary-background-color .wp-block-list > li::before,
.btn--triangle-context-white .wp-block-list > li::before {
    border-left-color: #fff;
}

/* Optional: animate on hover similar to .btn--triangle */
.wp-block-list > li { transition: transform .18s ease; }
.wp-block-list > li:hover { transform: translateX(3px); }

.blur {
    position: absolute;
    z-index: -1;
    border-radius: 900px;
    filter: blur(var(--blur-amount));
    background: var(--color);
    opacity: 0.2;
}

.blur:nth-child(5) {
    height: var(--blur-1-size);
    width: calc(var(--blur-1-size) * 1.1);
}

.blur:nth-child(6) {
    filter: blur(var(--blur-amount)) hue-rotate(-15deg) brightness(1.3);
    height: var(--blur-2-size);
    width: calc(var(--blur-2-size) * 0.75);
    top: 20vh;
    right: 20vh;
}

.blur:nth-child(7) {
    filter: blur(var(--blur-amount)) hue-rotate(-105deg);
    height: var(--blur-3-size);
    width: calc(var(--blur-3-size) * 2);
    bottom: 20vh;
    left: 20vw;
}