<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --bluetext-color: #2C5B90;
    --primary-color: #112752;
    --primary-color-600: #2D527D;
    --primary-light-color: #E3EEFF;
    --button-bgcolor: #3DAEFF;
}

.spacer-top {
    height: 67px;
    background-color: #112752;
}

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth !important;
    transition: 1s;
}


/* 
X-Small devices (portrait phones, less than 576px) 
No media query for `xs` since this is the default in Bootstrap  
*/


/* Small devices (landscape phones, 576px and up)  */

@media (min-width: 576px) {}


/* Medium devices (tablets, 768px and up) */

@media (min-width: 768px) {
    .spacer-top {
        height: 85px;
    }
}


/* Large devices (desktops, 992px and up) */

@media (min-width: 992px) {}


/* X-Large devices (large desktops, 1200px and up) */

@media (min-width: 1200px) {}


/* XX-Large devices (larger desktops, 1400px and up) */

@media (min-width: 1400px) {}</pre></body></html>