/*! sanitize.css v7.0.3 | CC0 License | github.com/csstools/sanitize.css */

/* Document
 * ========================================================================== */

/**
 * 1. Remove repeating backgrounds in all browsers (opinionated).
 * 2. Add border box sizing in all browsers (opinionated).
 */

*,
::before,
::after {
  background-repeat: no-repeat; /* 1 */
  box-sizing: border-box; /* 2 */
}

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */

::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Use the default user interface font in all browsers (opinionated).
 * 3. Correct the line height in all browsers.
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */

html {
  cursor: default; /* 1 */
  font-family:
    system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue,
     -apple-system,
     Segoe UI,
     Roboto,
     Ubuntu,
     Cantarell,
     Noto Sans,
     sans-serif,
     "Apple Color Emoji",
     "Segoe UI Emoji",
     "Segoe UI Symbol",
     "Noto Color Emoji"; /* 2 */

  line-height: 1.15; /* 3 */
  -moz-tab-size: 4; /* 4 */
     tab-size: 4; /* 4 */
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}

/* Sections
 * ========================================================================== */

/**
 * Remove the margin in all browsers (opinionated).
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * Add the correct display in IE.
 */

main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */

nav ol,
nav ul {
  list-style: none;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family:
    /* macOS 10.10+ */ Menlo,
    /* Windows 6+ */ Consolas,
    /* Android 4+ */ Roboto Mono,
    /* Ubuntu 10.10+ */ Ubuntu Monospace,
    /* KDE Plasma 5+ */ Noto Mono,
    /* Linux/OpenOffice fallback */ Liberation Mono,
    /* fallback */ monospace; /* 1 */

  font-size: 1em; /* 2 */
}

/* Text-level semantics
 * ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge, IE, Opera, and Safari.
 */

abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Use the default monospace user interface font
 *    in all browsers (opinionated).
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family:
    /* macOS 10.10+ */ Menlo,
    /* Windows 6+ */ Consolas,
    /* Android 4+ */ Roboto Mono,
    /* Ubuntu 10.10+ */ Ubuntu Monospace,
    /* KDE Plasma 4+ */ Oxygen Mono,
    /* Linux/OpenOffice fallback */ Liberation Mono,
    /* fallback */ monospace; /* 1 */

  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/*
 * Remove the text shadow on text selections in Firefox 61- (opinionated).
 * 1. Restore the coloring undone by defining the text shadow
 *    in all browsers (opinionated).
 */

::-moz-selection {
  background-color: #b3d4fc; /* 1 */
  color: #000; /* 1 */
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc; /* 1 */
  color: #000; /* 1 */
  text-shadow: none;
}

/* Embedded content
 * ========================================================================== */

/*
 * Change the alignment on media elements in all browers (opinionated).
 */

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
 * Add the correct display in IE 9-.
 */

audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */

img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */

svg {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */

svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */

/**
 * Collapse border spacing in all browsers (opinionated).
 */

table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */

/**
 * Inherit styling in all browsers (opinionated).
 */

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/**
 * Remove the margin in Safari.
 */

button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge, Firefox, and IE.
 */

button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Show the overflow in Edge and IE.
 */

input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */

legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in Edge and IE.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */

select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction on textareas in all browsers (opinionated).
 */

textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */

[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* Interactive
 * ========================================================================== */

/*
 * Add the correct display in Edge and IE.
 */

details {
  display: block;
}

/*
 * Add the correct styles in Edge, IE, and Safari.
 */

dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */

/**
 * Add the correct display in IE 9-.
 */

canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

/* User interaction
 * ========================================================================== */

/*
 * 1. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 * 2. Remove the tapping delay in IE 10.
 */

a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */

[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */

/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */

[aria-busy="true"] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */

[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */

[aria-disabled],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

/* --- Sitewide variables -------------------------------------------------- */

:root {
	/* --- colour palette --- */

	/* --- site colours --- */


	/* --- typography --- */
}

/* --- Bodycopy text and images -------------------------------------------- */

.align_left {
    /* for images placed in rich text editor */ 
    float: left;
    margin: 0 1em 0.5em 0; 
    position: relative;
    top: 0.5em;
    max-width: 50%; 
}

.align_right {
    /* for images placed in rich text editor */ 
    float: right;
    margin: 0 0 0.5em 1em;
    max-width: 50%; 
}

.align_center {
    /* for images placed in rich text editor */ 
    display: block;
    margin: 1em auto; 
    position: relative;
    top: 0.5em;
}

figure {
    /* figure for image that has a caption */
    display: table;
    margin: 1em 0;
}

figure figcaption {
    /* display caption text below image contained to image width */
    display: table-caption;
    caption-side: bottom;
    font-size: 13px;
    line-height: 1.4em;
    margin-top: 5px;
    color: #777;
}

@media only screen and (max-width: 767px) {
    /* common PW mobile layout adjustments for widths under 768px */ 

    .align_left, .align_right, .align_center {
        /* display images in center rather than aligned */
        display: block;
        float: none; 
        margin: 1em auto;
        max-width: 100%; 
    }
    
    figure,
    figure figcaption {
        /* let figcaption display as wide as needed below image */
        display: block;
        text-align: center;
    }
}

/*@import '_base.css';

@import '_nav.css';
@import '_btns.css';
@import '_form.css';
*/

/* --- site specific styling ----------------------------------------------- */

html {
    font-size: 18px;
    line-height: 1.6;
    color: rgb(77, 77, 77);
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 400;
}

#html-body {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    min-width: 100%;
}

#offcanvas-toggle i {
    color: white;
}

#offcanvas-nav .uk-search-input {
    /* the search box that appears in offcanvas nav */
    width: 100%;
}

.dbb-offcanvas-bar {
    background-color: #306ddd;
}

ul.uk-nav-sub li a.offcanvas-item, 
ul.uk-nav li a.offcanvas-item {
    color: #fff;
}

img.uk-comment-avatar {
    /* avatar that appears in comments */
    width: 60px;
    height: 60px; 
}

@media only screen and (max-width: 959px) {
    /* custom adjustments for mobile layouts under 960px */
    #masthead {
        /* primary nav is not visible, so it needs some padding here */
        padding-bottom: 20px;
    }
}

/****************************************************************
 * Bodycopy text and images
 *
 * These styles are good to have on any ProcessWire site
 *
 */

figure {
    /* figure for image that has a caption */
    display: table;
    margin: 1em 0;
}

figure figcaption {
    /* display caption text below image contained to image width */
    display: table-caption;
    caption-side: bottom;
    font-size: 13px;
    line-height: 1.4em;
    margin-top: 5px;
    color: #777;
}

@media only screen and (max-width: 767px) {
    /* common PW mobile layout adjustments for widths under 768px */ 

    .align_left, .align_right, .align_center {
        /* display images in center rather than aligned */
        display: block;
        float: none; 
        margin: 1em auto;
        max-width: 100%; 
    }
    
    figure,
    figure figcaption {
        /* let figcaption display as wide as needed below image */
        display: block;
        text-align: center;
    }
}

/* --- layout -------------------------------------------------------------- */

.page-wrapper {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    min-height: 100vh;
    -ms-flex-direction: column;
    flex-direction: column;
}

#header, #footer { -ms-flex: 0; flex: 0; }

#main { -ms-flex: 1; flex: 1; }

footer {
    background-color: #ff6ef7
}

/* --- navbar -------------------------------------------------------------- */

header {
    background: url(../images/nav-blue-splatter.jpg) top left;
    height: 95px;
    padding: 8px 10px;
}

#masthead-navbar .uk-navbar-left {
    padding-right: 10px;
}

.nav-logo { 
    height: 80px; 
}

/* --- footer --- */

.footer-logo {
    width: 500px;
    max-width: 96%;
    margin: 0 auto;
}

.footer-logo img {
        width: 100%;
    }

.footer-sponsor,
.footer-copy {
    color: #fff;
    text-align: center;
}

.footer-sponsor {
    margin-top: 9px;
    margin-top: 0.5rem;
    font-weight: 700;
}

/* --- override the menu text --- */

.uk-navbar-nav > li > a {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 22.5px;
    font-size: 1.250rem;
    color: #fff;
    min-height: auto;
    text-transform: none;
}

.uk-navbar-nav > li > a:hover,
    .uk-navbar-nav > li.uk-active > a {
        color: #ff6ef7;
    }

.dbb-button {
    background-color: #ff6ef7;
    border-radius: 10px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
}

/* --- home page --- */

.section-title h1 {
    font-size: 27px;
    font-size: 1.5rem;
    margin-top: 0;
    background-color: #306ddd;
    color: #fff;
    padding: 10px 0 10px 18px;
    padding: 10px 0 10px 1rem;
}

/* --- blog --- */

img.feature-image {
    width: 100%;
}

.post-preview {
    font-size: 15.75px;
    font-size: 0.875rem;
}

.post-preview-title {
    font-size: 22.5px;
    font-size: 1.25rem;
    margin-bottom: 0;
}

.post-preview-more {
    text-align: right;
    padding-right: 18px;
    padding-right: 1rem;
    font-size: 15.75px;
    font-size: 0.875rem;
}

p.uk-article-meta {
    font-size: 13.5px;
    font-size: 0.75rem;
    margin-top: 0;
    padding-bottom: 9px;
    padding-bottom: 0.5rem;
}

/* --- form --- */

.toggle-icon {display: none;}

#wrap_website {display: none;}

/* --- Media queries for responsive layout --------------------------------- */

/* Phone, etc portrait: nothing in here as this is the default ---- */

@media only screen and (min-width: 320px) {
}

@media only screen and (min-width: 360px) {
}

/* iPhone  ---- */

@media only screen and (min-width: 480px) {
}

/* Phone landscape ---- */

@media only screen and (min-width: 568px) {/*.container { width: 60%; }*/
}

/* iPad, tablets etc portrait ---- */

@media only screen and (min-width: 768px) {
	.uk-navbar-container:not(.uk-navbar-transparent) {
	    padding-left: 10%;
	    padding-right: 10%;
	}
	header { padding: 8px 30px; }


}

/* Laptops, Desktops, etc ---- */

@media only screen and (min-width: 1024px) {
}

/* Widescreen ---- */

@media only screen and (min-width: 1200px) {
}
/*# sourceMappingURL=main.css.map */
