@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --theme-color-primary: #0069AA;
  --theme-color-secondary: #0069AA;
  --theme-color-highlight: #0069AA;
  --theme-font-family: "Open Sans", sans-serif;
  --theme-header-height: 100px;
  --theme-header-height-mobile: 60px;
  --theme-nav-height: 60px;
  --theme-nav-color-background: #E0E0E0;
  --theme-nav-color-border: #FFFFFF;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /*scroll-padding-top: 60px;*/
}

body {
  margin: 0;
  color: #333333;
  font-family: var(--theme-font-family);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  background: #FFFFFF;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 2rem 0;
  line-height: normal;
}

h1 {
  font-size: 46px;
  font-weight: 400;
}

h2 {
  font-size: 36px;
  font-weight: 400;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

a {
  color: var(--theme-color-secondary);
  text-decoration: none;
  transition: all ease-in-out 0.12s;
}

a:hover {
}

sup, sub {
  position: relative;
  top: -0.4em;
  vertical-align: baseline;
}

sub {
  top: 0.4em;
}

#wrapper {
  text-align: center;
}

#container {
}

#inner {
}

#top {
}

#header {
  background: #FFFFFF;
  transition: all ease-in-out 0.12s;
}

#header-outer {
}

#header-inner {
}

#header-main {
  height: var(--theme-header-height);
  display: flex;
  align-items: center;
}

#header-left {
  flex-grow: 2;
}

#logo {
  font-size: 0;
}

#logo a {
  display: inline-block;
}

#logo a img {
  display: block;
}

#header-right {
}

#search {
  text-align: center;
  background: #EFEFEF;
  z-index: 99;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

.search-row {
  display: flex;
  flex-wrap: nowrap;
}

.search-column {
  position: relative;
}

form.form-search {
  display: block;
  position: relative;
  margin: auto;
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
}

form.form-search input,
form.form-search select,
form.form-search button {
  width: 100% !important;
  padding: 10px !important;
  font-family: var(--theme-font-family);
  vertical-align: middle;
  background: transparent;
  border: 0 !important;
  cursor: pointer;
}

form.form-search select {
  border-right: 1px solid #CCCCCC !important;
}

#navigation {
  background: #EFEFEF;
}

#content {
}

#footer {
  padding: 40px 0 20px 0;
  font-size: 14px;
  background: #EFEFEF;
}

#footer-outer {
}

#footer-inner {
}

#footer a {
  text-decoration: none;
}

#footer a:hover {
}

#footer p.footer-heading {
  font-size: 16px;
  font-weight: 700;
}

#footer ul {
  padding: 0;
  list-style: none;
}

#footer-bottom {
  padding: 5px 0;
  font-size: 14px;
  background: #EFEFEF;
}

#footer-bottom span.powered-by,
#footer-bottom span.powered-by a,
#footer-bottom span.powered-by a:hover {
}

#back-to-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  color: #FFFFFF;
  line-height: 40px;
  text-align: center;
  background: #313131;
  border-radius: 6px;
  opacity: 0.75;
  cursor: pointer;
}

#back-to-top::after {
  display: block;
  margin: -1px 0 0 0;
}

.clear-floats::after {
  content: "";
  display: block;
  clear: both;
}

/* Layout Classes */

.div-outer {
  width: 1540px;
  margin: 0 auto;
  text-align: left;
}

.div-inner {
  box-sizing: border-box;
}

/* Sticky Header Styles */

body.sticky-header #top {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  border-bottom: 1px solid #EFEFEF;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
}

body.sticky-header #header {
}

body.sticky-header #navigation {
}

body.sticky-header #content {
  padding-top: calc(var(--theme-header-height) + var(--theme-nav-height));
}

/* Main Navigation Styles */

#navigation-mobile {
  display: none;
}

#navigation-main ul {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}

#navigation-main ul:after {
  content: "";
  clear: both;
  display: block;
}

#navigation-main ul li {
  float: left;
  margin: 0;
  padding: 0;
}

#navigation-main ul li:hover > ul,
#navigation-main ul li.over > ul {
  visibility: visible;
  opacity: 1;
}

#navigation-main ul li a {
  position: relative;
  display: block;
  padding: 0 25px;
  color: #373737;
  font-family: var(--theme-font-family);
  font-size: 18px;
  line-height: var(--theme-nav-height);
  text-decoration: none;
  white-space: nowrap;
}

#navigation-main ul li a.nav-top span {
  display: block;
  position: relative;
}

#navigation-main ul li a.nav-top span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-highlight);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

#navigation-main ul li a.nav-top:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

#navigation-main ul li a.nav-top.animate-from-center span::after {
  width: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: width .3s;
}

#navigation-main ul li a.nav-top.animate-from-center:hover span::after {
  width: 100%;
}

#navigation-main ul li a.nav-current {
  color: var(--theme-color-highlight);
  text-decoration: none;
}

#navigation-main ul li a.nav-top.nav-current span::after {
  color: var(--theme-color-highlight);
}

#navigation-main ul li a:hover,
#navigation-main ul li:hover > a,
#navigation-main ul li > a:hover {
  color: var(--theme-color-highlight);
  text-decoration: none;
}

#navigation-main ul li a.nav-parent:hover,
#navigation-main ul li:hover > a.nav-parent,
#navigation-main ul li.over > a.nav-parent,
#navigation-main ul li > a.nav-parent:hover {
  background: #EFEFEF;
  z-index: 100;
}

#navigation-main ul li.nav-divider {
  display: none;
}

#navigation-main ul ul {
  /*display: none;*/
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: auto;
  background: #EFEFEF;
  border-radius: 0;
  box-shadow: 2px 2px 2px rgb(1, 1, 1);
  box-shadow: 2px 2px 2px rgba(1, 1, 1, 0.33);
  z-index: 99;
  transition: all ease-in-out .12s;
}

#navigation-main ul ul li {
  float: none;
  position: relative;
  border-bottom: 1px solid var(--theme-nav-color-background);
}

#navigation-main ul ul li:last-of-type {
  border: 0;
}

#navigation-main ul ul li a {
  display: block;
  height: auto;
  padding: 10px 25px;
  color: #343434;
  line-height: normal;
  text-decoration: none;
}

#navigation-main ul ul li a.nav-parent-sub {
  position: relative;
  padding-right: 45px;
}

#navigation-main ul ul li a.nav-parent-sub::after {
  position: absolute;
  right: 15px;
  content: "\f054";
  margin: 5px 0 0 0;
  color: var(--theme-nav-color-background);
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
}

#navigation-main ul ul li:hover > a,
#navigation-main ul ul li > a:hover {
  color: var(--theme-color-highlight);
  background: #F6F6F6;
}

#navigation-main ul ul ul {
  position: absolute;
  left: 100%;
  top: 0;
  background: #F6F6F6;
}

#navigation-main ul ul li:last-of-type ul {
  left: 100%;
  right: auto;
}

#navigation-main ul ul ul li {
}

#navigation-main ul ul ul li a {
}

#navigation-main ul.open-left {
  left: auto;
  right: 100%;
  box-shadow: -2px 2px 2px rgb(1, 1, 1);
  box-shadow: -2px 2px 2px rgba(1, 1, 1, 0.33);
}

/* Home Styles */

body.body-home #content-outer.div-outer {
  width: auto;
}

#home-slider,
#home-slider-items,
.slide,
.slide-image {
  width: 100%;
  height: 700px;
}

#home-slider {
  position: relative;
}

#home-slider-items {
  overflow: hidden;
}

.slide {
  position: relative;
}

.slide-image {
  position: absolute;
  text-align: center;
  overflow: hidden;
}

.slide-image img {
  position: absolute;
  display: block;
  width: auto !important;
  height: 100%;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  margin: auto;
  z-index: 1;
}

.slide-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slide-content,
.slide-content-outer,
.slide-content-inner {
  height: 100%;
}

.slide-content {
}

.slide-content-outer {
}

.slide-content-inner {
}

.slide-content-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 3;
}

.slide-content-container {
  display: table-cell;
  text-align: left;
  vertical-align: middle;
}

.slide-content-main {
  width: 100%;
  max-width: 540px;
}

.slide-content-text {
}

.slide-title {
  margin: 0 0 10px 0;
  color: #FFFFFF;
  font-size: 42px;
}

.slide-text {
  font-size: 16px;
  color: #FFFFFF;
}

.slide-content-links {
}

.slide-content-links a {
  margin: 0;
}

#owl-navigation {
  position: absolute;
  top: 45%;
  width: 100%;
  text-align: center;
  z-index: 99;
}

#owl-navigation.disabled {
  display: none;
}

#owl-navigation .owl-prev,
#owl-navigation .owl-next {
  position: absolute;
  background: none;
  border: 0;
  cursor: pointer;
  z-index: 9;
}

#owl-navigation .owl-prev::after,
#owl-navigation .owl-next::after {
  display: block;
  width: 50px;
  height: 50px;
  color: #FFFFFF;
  font-family: "Font Awesome 5 Pro";
  font-size: 26px;
  line-height: 50px;
  text-align: center;
  background: #00B5A8;
  border-radius: 50%;
}

#owl-navigation .owl-prev {
  left: 25px;
}

#owl-navigation .owl-prev::after {
  content: "\f053";
}

#owl-navigation .owl-next {
  right: 25px;
}

#owl-navigation .owl-next::after {
  content: "\f054";
}

#owl-navigation-dots {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 99;
}

#owl-navigation-dots.disabled {
  display: none;
}

#owl-navigation-dots .owl-dot {
  width: 20px;
  height: 20px;
  margin: 0 2px;
  background: #CCCCCC;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

#owl-navigation-dots .owl-dot.active {
  background: #555555;
}

#home-main {
  padding: 60px 0;
}

#home-main-outer {
}

#home-main-inner {
}

#home-top {
}

#home-top-outer {
}

#home-top-inner {
}

#home-middle {
}

#home-middle-outer {
}

#home-middle-inner {
}

#home-bottom {
}

#home-bottom-outer {
}

#home-bottom-inner {
}

/* Interior Styles */

#content {
}

#content-top {
  position: relative;
  width: 100%;
  height: 400px;
  text-align: center;
}

#content-top-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

#content-top-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

#content-top-image::after {
  display: block;
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  z-index: 2;
}

#content-top-heading {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 0;
  z-index: 3;
}

#content-top-heading-outer {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}

#content-top-heading-inner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

#content-top-heading-main {
  max-width: 80%;
  margin: auto;
  color: #FFFFFF;
  font-size: 24px;
}

#content-top-heading-main h1 {
  margin: 0 auto;
  font-size: 48px;
  font-weight: 700;
}

#content-top-heading-main p {
  margin-top: 0;
}

#content-main {
  padding: 40px 0;
}

#content-main-outer {
}

#content-main-inner {
}

#left {
}

#left-navigation {
  padding: 15px 0;
}

#left-navigation p.left-navigation-top {
  margin: 0;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
}

#left-navigation a {
  display: block;
  padding: 5px;
  color: #006DB9;
  text-decoration: none;
  border-bottom: 1px solid #EFEFEF;
}

#left-navigation a:hover {
  color: #333333;
}

#left-navigation a.current {
  color: #333333;
  background: #EFEFEF;
}

#left-navigation a span {
  display: inline-block;
  position: relative;
}

#left-navigation a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #333333;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

#left-navigation a.current span::after {
  background: var(--theme-color-secondary);
}

#left-navigation a:hover span::after {
  transform: scaleX(1);
  transform-origin: left;
}

#left-navigation ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

#left-navigation ul li {
}

#left-navigation ul li ul {
  padding: 0 0 0 15px;
}

#main {
  min-height: 600px;
  padding: 0 0 60px 0;
}

#main a {
  position: relative;
}

#main a:not(.button)::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--theme-color-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s;
}

#main a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

#right {
}

.modulebox {
  margin: 0 0 40px 0;
}

.modulebox-title {
  padding: 0 0 5px 0;
  font-size: 18px;
  border-bottom: 1px solid #CCCCCC;
}

.modulebox-content {
}

/* Site Search Styles */

.search-result {
  margin: 0 0 30px 0;
}

.search-result p {
  margin: 0;
}

.search-result p span.search-result-link {
}

.search-result p span.search-result-relevance {
  color: #676767;
}

.search-result p span.search-result-link a {
  font-size: 16px;
}

.search-result p span.search-result-snippet {
  display: block;
}

.search-result p span.search-result-url {
  color: #676767;
}

/* News Styles */

#category-list {
  margin: 15px 0;
  padding: 5px;
  text-align: right;
  background: #EFEFEF;
}

select#category-list-select {
  padding: 2px;
  border: 1px solid #CCCCCC;
}

.news-category {
  font-size: 14px;
}

.news-article,
.event-article {
  margin: 0 0 20px 0;
}

.news-title,
.event-title {
  margin: 5px 0;
  font-size: 20px;
}

.news-title a,
.event-title a {
  text-decoration: none;
}

.news-date,
.event-date {
  color: #454545;
  padding: 1px 0;
  font-style: italic;
}

.news-keywords {
  margin: 2px 0;
}

.news-spoiler,
.event-spoiler {
}

.pagination {
  line-height: 24px;
  padding: 5px;
}

.pagination span {
  display: block;
  margin: 3px;
}

.pagination a {
  display: inline-block;
  width: 22px;
  height: 22px;
  margin: 3px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  background: #E9E9E9;
  border: solid 1px #C0C0C0;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8), 0 1px 3px rgba(0, 0, 0, .1);
}

.pagination a.current-page {
  color: #F0F0F0;
  background: #616161;
  border: solid 1px #616161;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, .5), 0 1px 0 rgba(255, 255, 255, .8);
}

/* Form Styles */

form {
  position: relative;
}

.form-hidden {
  display: none;
}

.form-section {
  margin: 0 0 30px 0;
}

.form-input {
  margin: 0 0 20px 0;
}

.column .form-input:last-of-type {
  margin: 0;
}

form span.form-label {
  display: block;
  margin: 0 0 4px 0;
  font-size: 14px;
  font-weight: bold;
}

form span.form-label-inline {
  display: inline-block;
  margin: 0 0 0 4px;
}

form input,
form select,
form textarea,
form button {
  padding: 12px;
  max-width: 100%;
  font-family: var(--theme-font-family);
  font-size: 16px;
  box-sizing: border-box;
}

form select {
}

.select-wrapper {
  clear: both;
  position: relative;
}

.select-wrapper select {
  padding-right: 30px;
  -o-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAJCAYAAADtj3ZXAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAEBSURBVHjaYjxz5sxkBgYGQyAONzY2fspAAJw9e1YESK0G4jsAAcQEJByA2BqIVwElBAlo5AdSK6F67AECCKQ5EmQKEFtBDRDCo3ExEDsB8SMgjgEIIMb///+DJLSBnM1ArAjEu4A4FOiFT0gaOaBO9QHiFyAaKH8WIIBANjMAGVdBGqASbkC8EKiBHaqRFUjNg2p8B8QhII0gOYAAAtuMZAPI7+uAWAzqxDIgbgDidCB+D8RRQI07YOoBAghFM9QAeyC1FoiFgfgBECsA8VcgDgJq3IWsFiCAMDRDDXCDuoAbiH8AcQRQ40Z0dQABxIQtZKE2xALxRSBOxaYRBAACDAAYJlaV0VZ/aQAAAABJRU5ErkJggg==');
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
  cursor: pointer;
}

/*.select-wrapper::after {
  content: "\f107";
  position: absolute;
  right: 10px;
  top: 13px;
  color: #CCCCCC;
  font-family: "Font Awesome 5 Pro";
  font-size: 18px;
}*/

form input.input-text,
form select.input-text,
form textarea.input-text {
  width: 300px;
  border: 1px solid #CCCCCC;
  border-radius: 4px;
  transition: all 0.2s ease-in-out;
}

form input.input-full,
form select.input-full,
form textarea.input-full {
  width: 100%;
}

form input.input-half,
form select.input-half {
  width: 50%;
}

form input.input-small,
form select.input-small,
form textarea.input-small {
  width: 44%;
}

form input.input-smallest,
form select.input-smallest,
form textarea.input-smallest {
  width: auto;
}

form textarea.input-editor {
  width: 100%;
  height: 300px;
}

form input:not([type="submit"]):not([type="button"]):focus,
form select:focus,
form textarea:focus {
  outline: none;
  border: 1px solid rgba(0, 133, 217, 0.75);
  box-shadow: 0 0 0 0.2rem rgba(0, 133, 217, 0.75);
}

form input.input-price-sign {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' height='16px' width='85px'><text x='2' y='13' fill='gray' font-size='15' font-family='arial'>$</text></svg>");
  background-position: 5px center;
  background-repeat: no-repeat;
  padding-left: 20px !important;
}

form span.form-note {
  color: #CC0000;
  font-size: 12px;
  font-style: italic;
}

form span.form-note-block {
  display: block;
  margin: 4px 0 0 0;
}

span.form-required {
  color: #CC0000;
}

span.form-note {
  color: #CC0000;
  font-style: italic;
}

.info,
.okay,
.success,
.warning,
.error {
  position: relative;
  padding: 10px 15px 10px 45px;
  border-radius: 3px;
}

.info::before,
.okay::before,
.success::before,
.warning::before,
.error::before {
  position: absolute;
  left: 15px;
  margin-right: 12px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
}

.info {
  color: #31708F;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.info::before {
  content: "\f05a";
}

.okay,
.success {
  color: #4F8A10;
  background-color: #DFF2BF;
}

.okay::before,
.success::before {
  content: "\f058";
}

.warning {
  color: #9F6000;
  background-color: #FEEFB3;
}

.warning::before {
  content: "\f06a";
}

.error {
  color: #D8000C;
  background-color: #FFBABA;
}

.error::before {
  content: "\f057";
}

/* Table Styles */

table.table-list {
  width: 100%;
  border-collapse: collapse;
}

table.table-list tr {
  border: 1px solid #CCCCCC;
}

table.table-list th {
  padding: 7px;
  background: #DDDDDD;
}

table.table-list th a {
  color: #000000;
}

table.table-list td {
  padding: 7px;
  background: #FFFFFF;
}

table.table-list td p {
  margin: 0;
}

table.table-list tr:nth-child(2n+1) td {
  background: #F6F6F6;
}

table.table-list tr th.align-left,
table.table-list tr td.align-left {
  text-align: left;
}

table.table-list tr th.align-center,
table.table-list tr td.align-center {
  text-align: center;
}

table.table-list tr th.align-right,
table.table-list tr td.align-right {
  text-align: right;
}

/* Photo Gallery Styles */

.gallery-set {
  margin: 0 0 40px 0;
}

.gallery-set::after {
  content: "";
  display: block;
  clear: both;
}

.gallery-set h2 {
  padding: 0 0 10px 0;
  border-bottom: 1px solid #CFCFCF;
}

.gallery-list {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, 1fr);
}

.gallery-list-item {
}

.gallery-list-item a {
  display: block;
  position: relative;
  width: 100%;
  height: 400px;
  max-height: 400px;
  color: #505050;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  background-color: #DBDBDB;
}

.gallery-list-item a:hover {
  color: #505050;
  background-color: #EFEFEF;
}

.gallery-list-item a span.gallery-list-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
}

.gallery-list-item a span.gallery-list-thumb img {
  display: block;
  position: absolute;
  top: -9999px;
  right: -9999px;
  bottom: -9999px;
  left: -9999px;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: auto;
  object-fit: cover;
  transition: all ease-in-out .1s;
}

.gallery-list-item a:hover .gallery-list-thumb img {
  transform: scale(1.2);
}

.gallery-list-item .gallery-list-title {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  color: #FFFFFF;
  text-align: center;
  background: rgba(0, 0, 0, 0.65);
  box-sizing: border-box;
}

.featured-image {
  max-width: 470px;
  height: auto;
  padding: 2px;
  border: 1px solid #0B8288;
}

.gallery-images {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, 1fr);
}

.gallery-images a {
  display: block;
  padding: 2px;
  border: 1px solid #CCCCCC;
}

.gallery-images a:hover {
  border: 1px solid #444444;
}

.gallery-images a span {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.gallery-images a span img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

/* Social Media Styles */

.social-media {
}

.social-media a {
  display: inline-block;
  width: 32px;
  height: 32px;
  margin: 0 5px 0 0;
  color: #FFFFFF;
  font-size: 19px;
  line-height: 32px;
  text-align: center;
  text-decoration: none;
  background: var(--theme-color-primary);
  border-radius: 50%;
}

.social-media a i.fa {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
}

/* Screen Reader Text Styles */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  word-wrap: normal !important;
}

/* Responsive Embed Styles */

embed, iframe, object {
  max-width: 100%;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Responsive Media Queries */

@media only screen and (max-width: 1600px) {
  .div-outer {
    width: 100%;
  }

  .div-inner {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1440px) {
}

@media only screen and (max-width: 1280px) {
}

@media only screen and (max-width: 1080px) {
  #top {
    position: sticky !important;
    top: 0;
    left: 0;
    z-index: 999;
  }

  #header {
    padding: 10px 0;
  }

  #header-inner.div-inner {
    padding: 0 10px;
  }

  #header-main {
    height: var(--theme-header-height-mobile);
  }

  #header-left {
    width: 100%;
    max-width: 140px;
  }

  #header-right {
    flex-grow: 2;
    padding: 0 60px 0 0;
  }

  #logo a {
    display: block;
  }

  #logo a img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  #navigation-mobile {
    position: absolute;
    top: calc(((var(--theme-header-height-mobile) - 44px) / 2) + 10px);
    right: 12px;
    display: block;
    text-align: right;
    cursor: pointer;
    z-index: 99;
  }

  #navigation-mobile-label {
    display: none;
  }

  a#navigation-mobile-link {
    display: inline-block;
    width: 44px;
    height: 44px;
    color: #FFFFFF;
    font-family: monospace, sans-serif;
    font-size: 26px;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    background: #1A1A1A;
    border: 1px solid #474747;
  }

  a#navigation-mobile-link span:before {
    content:'\2261';
  }

  #navigation.mobile-menu-open a#navigation-mobile-link span::before {
    content: '\00D7';
  }

  #navigation-main {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    margin-left: -300px;
    text-align: left;
    background: var(--theme-nav-color-background);
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: all 0.3s ease 0s;
    overflow-x: hidden;
    overflow-y: auto;
  }

  #navigation.mobile-menu-open #navigation-main {
    display: block;
    position: fixed;
    margin-left: 0 !important;
    transition: all 0.3s ease 0s;
  }

  #navigation-main ul {
    visibility: visible !important;
    opacity: 1 !important;
  }

  #navigation-main ul li {
    position: relative;
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--theme-nav-color-border);
  }

  #navigation-main ul li:hover > ul,
  #navigation-main ul li.over > ul {
  }

  #navigation-main ul li a {
    height: auto;
    padding: 10px;
    color: #000000;
    font-size: 14px;
    line-height: normal;
    white-space: normal;
    background: var(--theme-nav-color-background);
  }

  #navigation-main ul li a.nav-top span::after {
    display: none;
  }

  #navigation-main ul li a:hover,
  #navigation-main ul li:hover > a,
  #navigation-main ul li > a:hover {
    color: var(--theme-color-primary);
  }

  #navigation-main ul li a.nav-parent:hover,
  #navigation-main ul li:hover > a.nav-parent,
  #navigation-main ul li.over > a.nav-parent,
  #navigation-main ul li > a.nav-parent:hover {
    background: var(--theme-nav-color-background);
  }

  #navigation-main ul li a.nav-parent::after,
  #navigation-main ul ul li a.nav-parent-sub::after {
    display: none;
  }

  #navigation-main ul li a.nav-current {
    color: var(--theme-color-primary);
  }

  #navigation-main ul li a.nav-current span.nav-title {
    border: 0;
  }

  #navigation-main ul li a.nav-current span.nav-title::after {
    display: none;
  }

  #navigation-main ul li span.nav-toggle {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 0;
    color: #000000;
    line-height: 40px;
    text-align: center;
    z-index: 99;
    cursor: pointer;
  }

  #navigation-main ul li span.nav-toggle::after {
    margin: 0;
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 700;
  }

  #navigation-main ul li span.nav-toggle-open {
  }

  #navigation-main ul li span.nav-toggle-open::after {
    content: "\f077";
  }

  #navigation-main ul li.nav-divider span {
    display: none;
    border: 0;
  }

  #navigation-main ul li ul,
  #navigation-main ul li ul ul,
  #navigation-main ul li ul ul ul {
    display: none;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    padding: 0;
    background: var(--theme-nav-color-border);
    box-shadow: 0 0 0;
  }

  #navigation-main ul ul {
    transition: none;
  }

  #navigation-main ul ul li {
    padding: 0 0 0 15px;
    border-bottom: 1px solid var(--theme-nav-color-border);
  }

  #navigation-main ul ul li:first-child {
    border-top: 1px solid var(--theme-nav-color-border);
  }

  #navigation-main ul ul li a {
    color: #000000;
    background: var(--theme-nav-color-background) !important;
  }

  #navigation-main ul ul li:hover > a,
  #navigation-main ul ul li > a:hover {
  }

  #navigation-main ul ul {
    display: block;
    margin: 0 0 0 30px;
  }

  body.sticky-header #content {
    padding-top: 0;
  }

  #home-slider,
  #home-slider-items,
  .slide,
  .slide-image {
    width: 100%;
    height: 400px;
  }

  #content-top {
    height: 200px;
  }

  #content-top-heading-main {
    font-size: 16px;
  }

  #content-top-heading-main h1 {
    font-size: 32px;
  }

  #content-main {
    padding: 10px 0;
  }

  #left {
    display: none;
  }
}

@media only screen and (max-width: 810px) {
  table.table-responsive {
    font-size: 12px;
  }

  table.table-responsive tr {
    display: block;
    margin: 0 0 10px 0;
  }

  table.table-responsive thead {
    display: none;
  }

  table.table-responsive td {
    display: block;
    text-align: right !important;
    border-bottom: 1px dotted #CCCCCC;
  }

  table.table-responsive td:last-of-type {
    border: 0;
  }

  table.table-responsive td:before {
    content: attr(data-th) ": ";
    float: left;
    margin: 0 10px 0 0;
    font-weight: bold;
    text-align: left;
  }

  table.table-responsive td[data-th=""]:before {
    display: none;
  }

  table.table-responsive td:after {
    display: block;
    content: "";
    clear: both;
  }

  .gallery-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .gallery-list-item a {
    height: 300px;
    max-height: 300px;
  }

  .hide-on-tablet {
    display: none;
  }

  .show-on-tablet {
    display: block;
  }

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

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

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

@media only screen and (max-width: 640px) {
  .slide-title {
    font-size: 32px;
  }

  .gallery-images {
    grid-template-columns: repeat(2, 1fr);
  }

  .float-left,
  .float-right {
    float: none;
    margin: revert;
  }

  .text-medium {
    font-size: 16px !important;
  }

  .text-large {
    font-size: 20px !important;
  }

  .text-x-large {
    font-size: 24px !important;
  }

  .hide-on-mobile {
    display: none;
  }

  .show-on-mobile {
    display: block;
  }

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

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

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

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

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

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