:root {
    --bs-blue: #00a6c8;
    --bs-cyan: #66cade;
    --bs-orange: #fd7e14;
    --bs-primary: #1b4469;
    --bs-secondary: #ccedf4;
    --bs-success: #a9c23f;
    --bs-info: #00a6c8;
    --bs-warning: #e17953;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #041e42;

    --bs-primary-rgb: 27, 68, 105;
    --bs-secondary-rgb: 204, 237, 244;
    --bs-success-rgb: 169, 194, 63;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 0, 173, 208;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 15, 30, 60;

    --bs-body-color-rgb: 4, 30, 66;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-body-color: #041e42;
    --bs-body-bg: #fff;

    --bs-lg-hover-color: #35d0ff;
    --bs-link-color: #2cb3de;
    --bs-link-hover-color: #35d0ff;
    --bs-body-font-family: "Work Sans", -apple-system, BlinkMacSystemFont,
        Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji,
        Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
caption,
figcaption,
p {
    text-wrap: pretty;
}

.text-balance {
    text-wrap: balance;
}
.text-orange {
    color: var(--bs-orange);
}

.object-fit-cover {
    object-fit: cover !important;
}

h6,
.h6,
h5,
.h5,
h4,
.h4,
h3,
.h3,
h2,
.h2,
h1,
.h1 {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
        Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji,
        Segoe UI Symbol, Noto Color Emoji;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}
header.masthead {
    position: relative;
    /* background-color: #1b4469; */
    margin-top: -160px;
    /* background: url("../assets/img/squiggles.jpg") no-repeat center center; */
    background-size: cover;
    /* height: 100vh; */
    padding-top: 8rem;
    padding-bottom: 8rem;

    /* background: linear-gradient(315deg, rgba(4,39,66,1) 3%, rgb(54, 75, 104,1) 18%, rgb(104, 120, 142,1) 68%, rgba(4,39,66,1) 98%);
    animation: gradient 15s ease infinite;
    background-size: 400% 400%;
    background-attachment: fixed;
  /* background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
	background-size: 400% 400%;
	animation: gradient 15s ease infinite; */
}
header.masthead:before {
    content: "";
    position: absolute;
    /* background-color: #1b4469; */
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}
header.masthead h1,
header.masthead .h1 {
    font-size: 2rem;
}
@media (min-width: 768px) {
    header.masthead {
        padding-top: 12rem;
        padding-bottom: 12rem;
    }
    header.masthead h1,
    header.masthead .h1 {
        font-size: 3rem;
    }
}
.navbar {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
    z-index: 100;
}
.navbar img {
    block-size: 40px;
}
.navbar a {
    text-transform: uppercase;
}
.pt-6 {
    padding-top: 6rem !important;
}
.pb-6 {
    padding-bottom: 6rem !important;
}

.btn-orange {
    background-color: var(--bs-orange);
}
.btn-orange:hover {
    background: var(--bs-info) !important;
}
.showcase-img:before {
    background-color: #1b4469;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0.6;
}

footer.footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

ul {
    font-weight: 400;
}
/* Hover effect */
.hover-underline {
    position: relative;
    display: inline-block;
}

.hover-underline::after,
.hover-underline::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #a9c23f, #00a6c8);
    bottom: -5px;
    left: 0;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.hover-underline::before {
    top: -5px;
    transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
    transform: scaleX(1);
}

/* Mautic */
.mauticform-page-wrapper {
    display: flex !important;
    row-gap: var(--bs-gutter-x);
}
.mauticform-errormsg {
    color: rgb(var(--bs-danger-rgb));
}
.mauticform-message {
    text-align: center;
    font-weight: bold;
    color: rgb(var(--bs-success-rgb));
}
.mauticform-message:not(:empty) + .mauticform-innerform {
    display: none;
}

/* Gradient */
.gradient-background {
    background: linear-gradient(240deg, #a9c23f, #00a6c8, #041e42, #364b68);
    background-size: 240% 240%;
    animation: gradient-animation 24s ease infinite;
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Waves */
@keyframes gradient {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.wave {
    background: rgb(255 255 255 / 25%);
    border-radius: 1000% 1000% 0 0;
    position: fixed;
    width: 200%;
    height: 12em;
    animation: wave 10s -3s linear infinite;
    transform: translate3d(0, 0, 0);
    opacity: 0.8;
    bottom: 0;
    left: 0;
    z-index: -1;
}

.wave:nth-of-type(2) {
    bottom: -1.25em;
    animation: wave 18s linear reverse infinite;
    opacity: 0.8;
}

.wave:nth-of-type(3) {
    bottom: -2.5em;
    animation: wave 20s -1s reverse infinite;
    opacity: 0.9;
}

@keyframes wave {
    2% {
        transform: translateX(1);
    }

    25% {
        transform: translateX(-25%);
    }

    50% {
        transform: translateX(-50%);
    }

    75% {
        transform: translateX(-25%);
    }

    100% {
        transform: translateX(1);
    }
}
