@charset "UTF-8";
/*!
Theme Name: NETS Australia
Description: A custom WordPress theme for NETS Australia. Modern, responsive design with clean typography and professional styling.
Author: NETS Australia Development Team
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nets-australia
Domain Path: /languages
Tags: custom-background, custom-colors, custom-header, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, one-column, two-columns, left-sidebar, right-sidebar, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, blog, business, portfolio
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
* {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
html,
body {
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* Remove default button styles */
button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Remove default fieldset styles */
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

/* Remove default legend styles */
legend {
  padding: 0;
}

/* Remove default table styles */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Remove default hr styles */
hr {
  border: none;
  height: 1px;
  background-color: #dee2e6;
  margin: 1rem 0;
}

/* Focus outline reset */
:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Remove outline for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure focus is visible for keyboard users */
:focus-visible {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Remove default appearance for form elements */
input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Remove default search input styles */
input[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

/* Remove spinner from number inputs */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Hide default checkbox and radio styles */
input[type=checkbox],
input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1rem;
  height: 1rem;
  border: 1px solid #dee2e6;
  margin-right: 0.5rem;
  vertical-align: top;
}

input[type=checkbox] {
  border-radius: 0.25rem;
}

input[type=radio] {
  border-radius: 50%;
}

input[type=checkbox]:checked,
input[type=radio]:checked {
  background-color: #0073aa;
  border-color: #0073aa;
}

input[type=checkbox]:checked::before {
  content: "✓";
  display: block;
  text-align: center;
  color: white;
  font-size: 0.75rem;
  line-height: 1;
}

input[type=radio]:checked::before {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: white;
  margin: 0.1875rem auto;
}

/* Better default styles for interactive elements */
button,
[role=button],
input[type=submit],
input[type=button],
input[type=reset] {
  cursor: pointer;
}

button:disabled,
[role=button]:disabled,
input[type=submit]:disabled,
input[type=button]:disabled,
input[type=reset]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* Better text selection */
::selection {
  background-color: rgba(0, 115, 170, 0.2);
  color: #333333;
}

::-moz-selection {
  background-color: rgba(0, 115, 170, 0.2);
  color: #333333;
}

/* Improve consistency of default fonts in all browsers */
code,
kbd,
samp,
pre {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
}

/* Prevent horizontal scrolling */
html {
  overflow-x: hidden;
}

/* Smooth scrolling for anchor links */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}
/* Better default line-height for readability */
p,
li,
dd {
  line-height: 1.6;
}

/* Better default spacing for headings */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  overflow-wrap: break-word;
}

/* Better default spacing for paragraphs */
p {
  overflow-wrap: break-word;
  hyphens: auto;
}

/* Remove default styles from address element */
address {
  font-style: normal;
}

/* Remove default border from iframe */
iframe {
  border: none;
}

/* Remove default margin from figure */
figure {
  margin: 0;
}

/* Better default styles for abbr */
abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
}

/* Remove default outline from summary */
summary {
  cursor: pointer;
  outline: none;
}

summary:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

/* Better default styles for mark */
mark {
  background-color: rgba(255, 193, 7, 0.3);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

/* Better default styles for small */
small {
  font-size: 0.875em;
}

/* Better default styles for sub and sup */
sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
  color: #333333;
}

h1 {
  font-size: 2.5rem;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  h1 {
    font-size: 2rem;
  }
}

h2 {
  font-size: 2rem;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  h2 {
    font-size: 1.75rem;
  }
}

h3 {
  font-size: 1.75rem;
  line-height: 1.2;
}
@media (max-width: 575.98px) {
  h3 {
    font-size: 1.49975rem;
  }
}

h4 {
  font-size: 1.5rem;
  line-height: 1.2;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.2;
}

h6 {
  font-size: 1rem;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #0073aa;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}
a:hover, a:focus {
  color: #005177;
  text-decoration: underline;
}
a:focus {
  outline: 2px solid #0073aa;
  outline-offset: 2px;
}

ul, ol {
  margin: 1rem 0;
  padding-left: 2rem;
}
ul:last-child, ol:last-child {
  margin-bottom: 0;
}

li {
  margin-bottom: 0.5rem;
}
li:last-child {
  margin-bottom: 0;
}

dl {
  margin: 1rem 0;
}

dt {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

dd {
  margin-bottom: 0.75rem;
  margin-left: 1.5rem;
}
dd:last-child {
  margin-bottom: 0;
}

blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid #0073aa;
  font-style: italic;
  color: #666666;
}
blockquote p {
  margin-bottom: 0.75rem;
}
blockquote p:last-child {
  margin-bottom: 0;
}
blockquote cite {
  display: block;
  margin-top: 0.75rem;
  font-style: normal;
  font-size: 0.875rem;
  color: #999999;
}
blockquote cite::before {
  content: "— ";
}

code,
kbd,
samp {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.9em;
  background-color: #f8f9fa;
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

pre {
  font-family: Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  background-color: #f8f9fa;
  padding: 1rem;
  border-radius: 0.375rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
pre code {
  background: none;
  padding: 0;
  font-size: inherit;
}

table {
  width: 100%;
  margin: 1.5rem 0;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #dee2e6;
  vertical-align: top;
}

th {
  font-weight: 600;
  background-color: #f8f9fa;
  border-bottom-width: 2px;
}

tbody tr:hover {
  background-color: rgba(248, 249, 250, 0.5);
}

hr {
  margin: 2rem 0;
  border: none;
  height: 1px;
  background-color: #dee2e6;
}

mark {
  background-color: rgba(255, 193, 7, 0.3);
  padding: 0.125rem 0.25rem;
  border-radius: 0.25rem;
}

small {
  font-size: 0.875rem;
  color: #999999;
}

strong, b {
  font-weight: 700;
}

em, i {
  font-style: italic;
}

sub, sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

abbr[title] {
  text-decoration: underline dotted;
  cursor: help;
  border-bottom: none;
}

address {
  font-style: normal;
  margin: 1rem 0;
}

::selection {
  background-color: rgba(0, 115, 170, 0.2);
  color: #333333;
}

::-moz-selection {
  background-color: rgba(0, 115, 170, 0.2);
  color: #333333;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-content {
  flex: 1;
}

.site-main {
  padding: 2rem 0;
  min-height: calc(100vh - 200px);
}
@media (max-width: 575.98px) {
  .site-main {
    padding: 1rem 0;
  }
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col {
  flex: 1;
  padding-left: 15px;
  padding-right: 15px;
}

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
  padding-left: 15px;
  padding-right: 15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 576px) {
  .col-sm-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .col-md-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .col-lg-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .col-xl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .has-sidebar .site-main {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

.no-sidebar .site-main {
  max-width: 800px;
  margin: 0 auto;
}

.page-header {
  margin-bottom: 2rem;
}
.page-header .page-title {
  margin-bottom: 0.5rem;
}
.page-header .page-description {
  color: #666666;
  font-size: 1.125rem;
}

.entry-header {
  margin-bottom: 1.5rem;
}

.entry-content {
  line-height: 1.8;
}
.entry-content > * + * {
  margin-top: 1.5rem;
}

.entry-footer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #dee2e6;
}

.post-thumbnail {
  margin-bottom: 1.5rem;
}
.post-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 0.375rem;
}

.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .alignleft {
    float: none;
    margin-right: 0;
    margin-bottom: 1rem;
  }
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .alignright {
    float: none;
    margin-left: 0;
    margin-bottom: 1rem;
  }
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .alignwide {
    margin-left: calc(-50vw + 800px / 2);
    margin-right: calc(-50vw + 800px / 2);
    max-width: 100vw;
    width: 100vw;
  }
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #dee2e6;
  padding: 1rem 0;
  position: relative;
  z-index: 1020;
}
.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 575.98px) {
  .site-header .container {
    flex-direction: column;
    gap: 1rem;
  }
}

.site-branding {
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .site-branding {
    text-align: center;
  }
}

.site-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}
.site-title a {
  color: #333333;
  text-decoration: none;
}
.site-title a:hover, .site-title a:focus {
  color: #0073aa;
  text-decoration: none;
}

.site-description {
  margin: 0;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #666666;
}
@media (max-width: 575.98px) {
  .site-description {
    margin-top: 0.5rem;
  }
}

.custom-logo-link {
  display: inline-block;
  margin-right: 1rem;
}
@media (max-width: 575.98px) {
  .custom-logo-link {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}

.custom-logo {
  max-height: 60px;
  width: auto;
  vertical-align: middle;
}

@media (min-width: 992px) {
  .admin-bar .site-header {
    top: 32px;
  }
}
@media (max-width: 575.98px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.sticky-header .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  transition: transform 0.3s ease 0s;
}
.sticky-header .site-header.header-hidden {
  transform: translateY(-100%);
}
.sticky-header .site-content {
  margin-top: 80px;
}

.header-centered .site-header .container {
  flex-direction: column;
  text-align: center;
  gap: 1.5rem;
}
.header-centered .site-branding {
  order: 1;
}
.header-centered .main-navigation {
  order: 2;
}

.header-minimal .site-header {
  padding: 0.75rem 0;
  border-bottom: none;
}
.header-minimal .site-header .site-title {
  font-size: 1.125rem;
}

.site-footer {
  background-color: #333333;
  color: #ffffff;
  padding: 2rem 0 1.5rem;
  margin-top: auto;
}
.site-footer a {
  color: #ffffff;
}
.site-footer a:hover, .site-footer a:focus {
  color: rgba(255, 255, 255, 0.8);
}

.footer-widgets {
  margin-bottom: 2rem;
}
.footer-widgets .footer-widget-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
@media (max-width: 575.98px) {
  .footer-widgets .footer-widget-area {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.footer-widgets .footer-widget-column .widget {
  margin-bottom: 1.5rem;
}
.footer-widgets .footer-widget-column .widget:last-child {
  margin-bottom: 0;
}
.footer-widgets .footer-widget-column .widget-title {
  color: #ffffff;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.site-info {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1.5rem;
}
.site-info .footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
@media (max-width: 575.98px) {
  .site-info .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.footer-navigation .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}
@media (max-width: 575.98px) {
  .footer-navigation .footer-menu {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}
.footer-navigation .footer-menu a {
  font-size: 0.875rem;
  transition: color 0.3s ease 0s;
}
.footer-navigation .footer-menu a:hover, .footer-navigation .footer-menu a:focus {
  color: rgba(255, 255, 255, 0.8);
}

.copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}
.copyright p + p {
  margin-top: 0.5rem;
}
.copyright a {
  color: rgba(255, 255, 255, 0.9);
}
.copyright a:hover, .copyright a:focus {
  color: #ffffff;
}

.footer-minimal .site-footer {
  padding: 1.5rem 0 1rem;
}
.footer-minimal .site-footer .footer-widgets {
  display: none;
}
.footer-minimal .site-footer .site-info {
  border-top: none;
  padding-top: 0;
}

.footer-dark .site-footer {
  background-color: #212529;
}

.footer-light .site-footer {
  background-color: #f8f9fa;
  color: #333333;
}
.footer-light .site-footer a {
  color: #333333;
}
.footer-light .site-footer a:hover, .footer-light .site-footer a:focus {
  color: #0073aa;
}
.footer-light .site-footer .footer-widgets .widget-title {
  color: #333333;
  border-bottom-color: #dee2e6;
}
.footer-light .site-footer .site-info {
  border-top-color: #dee2e6;
}
.footer-light .site-footer .copyright p {
  color: #666666;
}

@media (max-width: 575.98px) {
  .sidebar {
    margin-top: 2rem;
  }
}

.widget-area .widget {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
}
.widget-area .widget:last-child {
  margin-bottom: 0;
}
.widget-area .widget-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0073aa;
  color: #333333;
}
.widget-area .widget-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget-area .widget-content ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}
.widget-area .widget-content ul li:last-child {
  border-bottom: none;
}
.widget-area .widget-content ul li a {
  color: #333333;
}
.widget-area .widget-content ul li a:hover, .widget-area .widget-content ul li a:focus {
  color: #0073aa;
}

.button,
.btn,
button,
input[type=submit],
input[type=button],
input[type=reset] {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.button:focus, .button:hover,
.btn:focus,
.btn:hover,
button:focus,
button:hover,
input[type=submit]:focus,
input[type=submit]:hover,
input[type=button]:focus,
input[type=button]:hover,
input[type=reset]:focus,
input[type=reset]:hover {
  text-decoration: none;
}
.button:focus,
.btn:focus,
button:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.button:disabled, .button.disabled,
.btn:disabled,
.btn.disabled,
button:disabled,
button.disabled,
input[type=submit]:disabled,
input[type=submit].disabled,
input[type=button]:disabled,
input[type=button].disabled,
input[type=reset]:disabled,
input[type=reset].disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.button,
.btn,
button,
input[type=submit],
input[type=button],
input[type=reset] {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.button:hover, .button:focus,
.btn:hover,
.btn:focus,
button:hover,
button:focus,
input[type=submit]:hover,
input[type=submit]:focus,
input[type=button]:hover,
input[type=button]:focus,
input[type=reset]:hover,
input[type=reset]:focus {
  color: #ffffff;
  background-color: rgb(0, 89.125, 131.75);
  border-color: rgb(0, 80.5, 119);
}
.button:focus,
.btn:focus,
button:focus,
input[type=submit]:focus,
input[type=button]:focus,
input[type=reset]:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.button-primary,
.btn-primary {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.button-primary:hover, .button-primary:focus,
.btn-primary:hover,
.btn-primary:focus {
  color: #ffffff;
  background-color: rgb(0, 89.125, 131.75);
  border-color: rgb(0, 80.5, 119);
}
.button-primary:focus,
.btn-primary:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.button-secondary,
.btn-secondary {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.button-secondary:hover, .button-secondary:focus,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #ffffff;
  background-color: rgb(90.2703862661, 97.7929184549, 104.4796137339);
  border-color: rgb(84.3605150215, 91.3905579399, 97.6394849785);
}
.button-secondary:focus,
.btn-secondary:focus {
  box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.2);
}

.button-success,
.btn-success {
  color: #ffffff;
  background-color: #28a745;
  border-color: #28a745;
}
.button-success:hover, .button-success:focus,
.btn-success:hover,
.btn-success:focus {
  color: #ffffff;
  background-color: rgb(32.6086956522, 136.1413043478, 56.25);
  border-color: rgb(30.1449275362, 125.8550724638, 52);
}
.button-success:focus,
.btn-success:focus {
  box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}

.button-warning,
.btn-warning {
  color: #333333;
  background-color: #ffc107;
  border-color: #ffc107;
}
.button-warning:hover, .button-warning:focus,
.btn-warning:hover,
.btn-warning:focus {
  color: #333333;
  background-color: rgb(223.75, 167.8125, 0);
  border-color: rgb(211, 158.25, 0);
}
.button-warning:focus,
.btn-warning:focus {
  box-shadow: 0 0 0 2px rgba(255, 193, 7, 0.2);
}

.button-danger,
.btn-danger {
  color: #ffffff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.button-danger:hover, .button-danger:focus,
.btn-danger:hover,
.btn-danger:focus {
  color: #ffffff;
  background-color: rgb(200.082278481, 34.667721519, 50.5158227848);
  border-color: rgb(189.2151898734, 32.7848101266, 47.7721518987);
}
.button-danger:focus,
.btn-danger:focus {
  box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

.button-info,
.btn-info {
  color: #ffffff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}
.button-info:hover, .button-info:focus,
.btn-info:hover,
.btn-info:focus {
  color: #ffffff;
  background-color: rgb(18.75, 132.0652173913, 150);
  border-color: rgb(17.3333333333, 122.0869565217, 138.6666666667);
}
.button-info:focus,
.btn-info:focus {
  box-shadow: 0 0 0 2px rgba(23, 162, 184, 0.2);
}

.button-outline,
.btn-outline {
  color: #0073aa;
  background-color: transparent;
  border-color: #0073aa;
}
.button-outline:hover, .button-outline:focus,
.btn-outline:hover,
.btn-outline:focus {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.button-outline:focus,
.btn-outline:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.button-outline-secondary,
.btn-outline-secondary {
  color: #6c757d;
  background-color: transparent;
  border-color: #6c757d;
}
.button-outline-secondary:hover, .button-outline-secondary:focus,
.btn-outline-secondary:hover,
.btn-outline-secondary:focus {
  color: #ffffff;
  background-color: #6c757d;
  border-color: #6c757d;
}
.button-outline-secondary:focus,
.btn-outline-secondary:focus {
  box-shadow: 0 0 0 2px rgba(108, 117, 125, 0.2);
}

.button-sm,
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.button-lg,
.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.button-block,
.btn-block {
  display: block;
  width: 100%;
}

.button-group,
.btn-group {
  display: inline-flex;
}
.button-group .button,
.button-group .btn,
.btn-group .button,
.btn-group .btn {
  border-radius: 0;
}
.button-group .button:first-child,
.button-group .btn:first-child,
.btn-group .button:first-child,
.btn-group .btn:first-child {
  border-top-left-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}
.button-group .button:last-child,
.button-group .btn:last-child,
.btn-group .button:last-child,
.btn-group .btn:last-child {
  border-top-right-radius: 0.375rem;
  border-bottom-right-radius: 0.375rem;
}
.button-group .button:not(:last-child),
.button-group .btn:not(:last-child),
.btn-group .button:not(:last-child),
.btn-group .btn:not(:last-child) {
  border-right: none;
}

.wp-block-button .wp-block-button__link {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.wp-block-button .wp-block-button__link:focus, .wp-block-button .wp-block-button__link:hover {
  text-decoration: none;
}
.wp-block-button .wp-block-button__link:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.wp-block-button .wp-block-button__link:disabled, .wp-block-button .wp-block-button__link.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wp-block-button .wp-block-button__link {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.wp-block-button .wp-block-button__link:hover, .wp-block-button .wp-block-button__link:focus {
  color: #ffffff;
  background-color: rgb(0, 89.125, 131.75);
  border-color: rgb(0, 80.5, 119);
}
.wp-block-button .wp-block-button__link:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.wp-block-button .wp-block-button__link.has-background {
  border-color: transparent;
}

.read-more {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.read-more:focus, .read-more:hover {
  text-decoration: none;
}
.read-more:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.read-more:disabled, .read-more.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.read-more {
  color: #0073aa;
  background-color: transparent;
  border-color: #0073aa;
}
.read-more:hover, .read-more:focus {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.read-more:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.read-more {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  text-decoration: none;
}
.read-more:hover, .read-more:focus {
  text-decoration: none;
}

input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
textarea,
select {
  display: block;
  width: 100%;
  padding: 0.75rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333333;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=color]:focus,
textarea:focus,
select:focus {
  outline: 0;
  border-color: #0073aa;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=tel]::placeholder,
input[type=date]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder,
input[type=datetime]::placeholder,
input[type=datetime-local]::placeholder,
input[type=color]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #999999;
  opacity: 1;
}
input[type=text]:disabled, input[type=text][readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=url]:disabled,
input[type=url][readonly],
input[type=password]:disabled,
input[type=password][readonly],
input[type=search]:disabled,
input[type=search][readonly],
input[type=number]:disabled,
input[type=number][readonly],
input[type=tel]:disabled,
input[type=tel][readonly],
input[type=date]:disabled,
input[type=date][readonly],
input[type=month]:disabled,
input[type=month][readonly],
input[type=week]:disabled,
input[type=week][readonly],
input[type=time]:disabled,
input[type=time][readonly],
input[type=datetime]:disabled,
input[type=datetime][readonly],
input[type=datetime-local]:disabled,
input[type=datetime-local][readonly],
input[type=color]:disabled,
input[type=color][readonly],
textarea:disabled,
textarea[readonly],
select:disabled,
select[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333333;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #666666;
}

input[type=checkbox],
input[type=radio] {
  margin-right: 0.5rem;
}
input[type=checkbox] + label,
input[type=radio] + label {
  display: inline;
  margin-bottom: 0;
  font-weight: 400;
}

.search-form {
  display: flex;
}
.search-form .search-field {
  flex: 1;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search-form .search-submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-left: none;
}

.main-navigation {
  position: relative;
}
.main-navigation .menu-toggle {
  display: none;
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.main-navigation .menu-toggle:focus, .main-navigation .menu-toggle:hover {
  text-decoration: none;
}
.main-navigation .menu-toggle:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.main-navigation .menu-toggle:disabled, .main-navigation .menu-toggle.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.main-navigation .menu-toggle {
  color: #333333;
  background-color: transparent;
  border-color: #333333;
}
.main-navigation .menu-toggle:hover, .main-navigation .menu-toggle:focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.main-navigation .menu-toggle:focus {
  box-shadow: 0 0 0 2px rgba(51, 51, 51, 0.2);
}
.main-navigation .menu-toggle {
  padding: 0.5rem 0.75rem;
}
@media (max-width: 575.98px) {
  .main-navigation .menu-toggle {
    display: block;
  }
}
.main-navigation .menu-toggle .menu-icon {
  display: block;
  width: 20px;
  height: 2px;
  background-color: currentColor;
  position: relative;
}
.main-navigation .menu-toggle .menu-icon::before, .main-navigation .menu-toggle .menu-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transition: transform 0.3s ease 0s;
}
.main-navigation .menu-toggle .menu-icon::before {
  top: -6px;
}
.main-navigation .menu-toggle .menu-icon::after {
  bottom: -6px;
}
.main-navigation .menu-toggle[aria-expanded=true] .menu-icon {
  background-color: transparent;
}
.main-navigation .menu-toggle[aria-expanded=true] .menu-icon::before {
  transform: rotate(45deg) translateY(6px);
}
.main-navigation .menu-toggle[aria-expanded=true] .menu-icon::after {
  transform: rotate(-45deg) translateY(-6px);
}
.main-navigation .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
@media (max-width: 575.98px) {
  .main-navigation .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    padding: 1rem;
    gap: 1rem;
  }
  .main-navigation .nav-menu.menu-open {
    display: flex;
  }
}
.main-navigation .nav-menu a {
  color: #333333;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0;
  transition: color 0.3s ease 0s;
}
.main-navigation .nav-menu a:hover, .main-navigation .nav-menu a:focus {
  color: #0073aa;
  text-decoration: none;
}
.main-navigation .nav-menu .current-menu-item > a,
.main-navigation .nav-menu .current_page_item > a {
  color: #0073aa;
}

.post-navigation {
  margin: 2rem 0;
  padding: 1rem 0;
  border-top: 1px solid #dee2e6;
  border-bottom: 1px solid #dee2e6;
}
.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .post-navigation .nav-links {
    flex-direction: column;
    gap: 1rem;
  }
}
.post-navigation .nav-links a {
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease 0s;
}
.post-navigation .nav-links a:hover, .post-navigation .nav-links a:focus {
  color: #0073aa;
}
.post-navigation .nav-links .nav-subtitle {
  display: block;
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.25rem;
}
.post-navigation .nav-links .nav-title {
  font-weight: 500;
}

.posts-navigation {
  margin: 2rem 0;
}
.posts-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.posts-navigation .nav-links a {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 0.375rem;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}
.posts-navigation .nav-links a:focus, .posts-navigation .nav-links a:hover {
  text-decoration: none;
}
.posts-navigation .nav-links a:focus {
  outline: 0;
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}
.posts-navigation .nav-links a:disabled, .posts-navigation .nav-links a.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.posts-navigation .nav-links a {
  color: #0073aa;
  background-color: transparent;
  border-color: #0073aa;
}
.posts-navigation .nav-links a:hover, .posts-navigation .nav-links a:focus {
  color: #ffffff;
  background-color: #0073aa;
  border-color: #0073aa;
}
.posts-navigation .nav-links a:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.2);
}

.widget .widget-title {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0073aa;
}
.widget ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.widget ul li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dee2e6;
}
.widget ul li:last-child {
  border-bottom: none;
}

.comments-area {
  margin-top: 2rem;
}
.comments-area .comments-title {
  margin-bottom: 1.5rem;
}
.comments-area .comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.comments-area .comment-list .comment {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-radius: 0.375rem;
}
.comments-area .comment-list .comment .comment-meta {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 0.5rem;
}
.comments-area .comment-list .comment .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-form {
  margin-top: 2rem;
}
.comments-area .comment-form .form-submit {
  margin-top: 1rem;
}

.blog .site-main .post {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #dee2e6;
}
.blog .site-main .post:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.single .site-main .entry-header {
  margin-bottom: 2rem;
}

.entry-meta {
  font-size: 0.875rem;
  color: #666666;
  margin-bottom: 1rem;
}
.entry-meta > * {
  margin-right: 1rem;
}
.entry-meta > *:last-child {
  margin-right: 0;
}
.entry-meta a {
  color: #666666;
}
.entry-meta a:hover, .entry-meta a:focus {
  color: #0073aa;
}

.entry-title {
  margin-bottom: 0.5rem;
}
.entry-title a {
  color: #333333;
  text-decoration: none;
}
.entry-title a:hover, .entry-title a:focus {
  color: #0073aa;
}

.page-links {
  margin: 1.5rem 0;
  font-size: 0.875rem;
}
.page-links a,
.page-links span {
  display: inline-block;
  padding: 0.5rem 0.75rem;
  margin-right: 0.5rem;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.page-links a {
  color: #0073aa;
  text-decoration: none;
}
.page-links a:hover, .page-links a:focus {
  background-color: #0073aa;
  color: #ffffff;
}
.page-links .current {
  background-color: #0073aa;
  color: #ffffff;
  border-color: #0073aa;
}

.wp-block-quote {
  border-left: 4px solid #0073aa;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
}

.admin-bar .site-header {
  top: 32px;
}
@media (max-width: 575.98px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-3 {
  margin: 0.75rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.m-4 {
  margin: 1rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-5 {
  margin: 1.25rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.m-6 {
  margin: 1.5rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-8 {
  margin: 2rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.m-12 {
  margin: 3rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.m-16 {
  margin: 4rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mr-16 {
  margin-right: 4rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.ml-16 {
  margin-left: 4rem !important;
}

.mx-16 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.m-20 {
  margin: 5rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

.mr-20 {
  margin-right: 5rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

.ml-20 {
  margin-left: 5rem !important;
}

.mx-20 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.m-24 {
  margin: 6rem !important;
}

.mt-24 {
  margin-top: 6rem !important;
}

.mr-24 {
  margin-right: 6rem !important;
}

.mb-24 {
  margin-bottom: 6rem !important;
}

.ml-24 {
  margin-left: 6rem !important;
}

.mx-24 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my-24 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-3 {
  padding: 0.75rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-5 {
  padding: 1.25rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pr-5 {
  padding-right: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pl-5 {
  padding-left: 1.25rem !important;
}

.px-5 {
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pr-6 {
  padding-right: 1.5rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pr-8 {
  padding-right: 2rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pl-8 {
  padding-left: 2rem !important;
}

.px-8 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pr-10 {
  padding-right: 2.5rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pl-10 {
  padding-left: 2.5rem !important;
}

.px-10 {
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.p-12 {
  padding: 3rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pr-12 {
  padding-right: 3rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pl-12 {
  padding-left: 3rem !important;
}

.px-12 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.p-16 {
  padding: 4rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pr-16 {
  padding-right: 4rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pl-16 {
  padding-left: 4rem !important;
}

.px-16 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.p-20 {
  padding: 5rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pr-20 {
  padding-right: 5rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.pl-20 {
  padding-left: 5rem !important;
}

.px-20 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.p-24 {
  padding: 6rem !important;
}

.pt-24 {
  padding-top: 6rem !important;
}

.pr-24 {
  padding-right: 6rem !important;
}

.pb-24 {
  padding-bottom: 6rem !important;
}

.pl-24 {
  padding-left: 6rem !important;
}

.px-24 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py-24 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.text-left {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-justify {
  text-align: justify !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-light {
  font-weight: 300 !important;
}

.font-normal {
  font-weight: 400 !important;
}

.font-medium {
  font-weight: 500 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-primary {
  color: #0073aa !important;
}

.text-secondary {
  color: #005177 !important;
}

.text-success {
  color: #28a745 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-light {
  color: #666666 !important;
}

.text-muted {
  color: #999999 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-dark {
  color: #333333 !important;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f8f9fa;
  border-radius: 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  clip: auto !important;
  color: #333333;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 8px 16px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 576px) {
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
  .d-sm-grid {
    display: grid !important;
  }
  .d-sm-none {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-grid {
    display: grid !important;
  }
  .d-md-none {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-grid {
    display: grid !important;
  }
  .d-lg-none {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-grid {
    display: grid !important;
  }
  .d-xl-none {
    display: none !important;
  }
}
@media (min-width: 1400px) {
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: flex !important;
  }
  .d-xxl-grid {
    display: grid !important;
  }
  .d-xxl-none {
    display: none !important;
  }
}
@media (max-width: 575.98px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 575.98px) {
  .visible-tablet {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .hidden-desktop {
    display: none !important;
  }
}

@media (max-width: 991.98px) {
  .visible-desktop {
    display: none !important;
  }
}

/*# sourceMappingURL=style.css.map */
