/*
 Theme Name:   Blank Child
 Theme URI:    http://example.com/blank-child/
 Description:  Blank Child Theme
 Author:       John Doe
 Author URI:   http://example.com
 Template:     blank
 Version:      1.0.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  blank-child
*/

/* Imports */

@import url('https://fonts.googleapis.com/css2?family=Besley:ital,wght@0,400..900;1,400..900&family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* General Styles */

:root {
  --theme-color-primary: #115D7E;
  --theme-color-secondary: #E0D9D0;
  --theme-color-light: #E2F5FD;
  --theme-header-height: 120px;
  --theme-utility-height: 60px;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Jost', sans-serif;
  color: #353535;
  font-size: 18px;
  line-height: 1.6;
  background: #232323;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0.5rem 0 3rem 0;
  line-height: 1.3;
}

h1 {
  font-family: "Besley", serif;
  font-size: 46px;
  font-weight: 600;
}

h2 {
  position: relative;
  font-family: "Besley", serif;
  font-size: 38px;
  font-weight: 600;
}

h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #999999;
}

h3 {
}

h4 {
}

h5 {
}

h6 {
}

a,
a:visited {
  color: var(--theme-color-primary);
  text-decoration: underline;
  transition: all ease-in-out 0.12s;
}

a:hover {
  color: var(--theme-color-primary);
  text-decoration: none;
}

ul,
ol {
  margin: 1em 0 1em 1em;
}

li > ul,
li > ol {
  margin: .5em 0 .5em .5em;
}

#page {
  background: #FFFFFF;
  overflow: hidden;
}

.container {
  max-width: 1140px;
  margin: auto;
}

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

#search-form-box {
  display: none;
  width: 600px;
  max-width: 95%;
  margin: 0;
  padding: 0;
  /*padding: 40px;*/
  color: #FFFFFF;
  font-size: 26px;
  background: transparent;
  /*border-radius: 10px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.7);*/
  overflow: hidden;
}

#search-form-box > p {
  margin: 0 0 1rem 0;
}

#search-form {
  position: relative;
  width: 100%;
}

#search-form input#s {
  display: block;
  width: 100%;
  padding: 10px 60px 10px 20px;
  color: #353535;
  font-family: 'Jost', sans-serif;
  font-size: 26px;
}

#search-form button#search-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 20px;
  font-size: 20px;
  background: none;
  border: 0;
  cursor: pointer;
}

#masthead {
  position: fixed;
  width: 100%;
  z-index: 999;
}

#header-top {
  position: relative;
  height: var(--theme-header-height);
  display: flex;
  align-items: center;
  background: #FFFFFF;
}

#header-top::before {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color-primary);
}

#header-top::after {
  content: "";
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

#header-left {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 25px;
  background: var(--theme-color-primary);
}

.site-branding {
  font-size: 0;
}

.site-branding a {
  display: inline-block;
}

.site-branding a img {
  display: block;
  max-width: 220px;
}

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

#navigation {
}

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

.main-navigation {
  clear: none;
  float: none;
}

.main-navigation ul {
  white-space: nowrap;
}

.main-navigation ul ul {
  background: #EFEFEF;
}

.main-navigation ul li {
  position: relative;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
  /*top: auto;*/
}

.main-navigation ul li a {
  padding: 15px 20px;
  color: var(--theme-color-primary);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  text-align: left;
}

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

.main-navigation ul:not(.sub-menu) > li.current_page_ancestor > a,
.main-navigation ul:not(.sub-menu) > li.current_page_parent > a,
.main-navigation ul:not(.sub-menu) > li.current_page_item > a {
}

.main-navigation ul:not(.sub-menu) > li > a > span {
  position: relative;
}

.main-navigation ul:not(.sub-menu) > li > a > span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  transition: all ease-in-out 0.2s;
}

.main-navigation ul:not(.sub-menu) > li:hover > a > span::after,
.main-navigation ul:not(.sub-menu) > li > a:hover > span::after {
  width: 100%;
  background: var(--theme-color-primary);
}

.main-navigation ul:not(.sub-menu) > li.current_page_parent > a > span::after,
.main-navigation ul:not(.sub-menu) > li.current_page_item > a > span::after {
  width: 100%;
  background: var(--theme-color-primary);
}

.main-navigation ul li.menu-item-has-children > a {
  position: relative;
}

.main-navigation ul li.menu-item-has-children > a::after {
  display: inline-block;
  position: relative;
  margin: 0 0 0 15px;
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  color: #999999;
}

.main-navigation ul li.menu-item-has-children a:hover,
.main-navigation ul li.menu-item-has-children:hover > a {
  background: #EFEFEF;
}

.main-navigation ul.sub-menu {
}

.main-navigation ul.sub-menu li {
  float: none;
}

.main-navigation ul.sub-menu li:not(:last-child) {
  border-bottom: 1px solid #FFFFFF;
}

.main-navigation ul.sub-menu li a {
  width: 100%;
  min-width: 200px;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.main-navigation ul.sub-menu li a:hover {
  background: #FFFFFF;
}

.main-navigation ul.sub-menu li.menu-item-has-children {
}

.main-navigation ul.sub-menu li.menu-item-has-children a:hover,
.main-navigation ul.sub-menu li.menu-item-has-children:hover > a {
  background: #FFFFFF;
}

.main-navigation ul.sub-menu li.menu-item-has-children > a {
  padding-right: 30px;
}

.main-navigation ul.sub-menu li.menu-item-has-children > a::after {
  position: absolute;
  top: 15px;
  right: 10px;
  content: "\f054";
}

#header-bottom {
  display: flex;
  align-items: center;
  position: relative;
  height: var(--theme-utility-height);
  font-size: 16px;
  background: var(--theme-color-secondary);
}

#header-bottom::after {
  content: "";
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--theme-color-secondary);
}

#header-bottom-left {
  flex-grow: 2;
  padding: 0 15px;
}

#header-bottom-left ul.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

#header-bottom-left ul.menu li {
  display: inline-block;
  margin: 0 20px;
}

#header-bottom-left ul.menu li a {
  position: relative;
  color: #333333;
  font-weight: 600;
  text-decoration: none;
}

#header-bottom-left ul.menu li a > span::after {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  transition: all ease-in-out 0.2s;
}

#header-bottom-left ul.menu li:hover a > span::after,
#header-bottom-left ul.menu li a:hover > span::after {
  width: 100%;
  background: var(--theme-color-primary);
}

#header-bottom-right {
}

#header-bottom-right a {
  display: inline-block;
  color: #333333;
}

#header-bottom-right a:not(:last-child) {
  margin: 0 10px 0 0;
}

.site-footer {
  color: #FFFFFF;
  background: var(--theme-color-primary);
}

#footer-top {
  padding: 60px 0 0 0;
  font-size: 15px;
}

#footer-top #logo-footer img {
  max-width: 220px;
}

#footer-top a {
  color: #FFFFFF;
  text-decoration: none;
}

#footer-top ul.menu {
  margin-top: 0 !important;
  margin-left: 0;
  padding: 0;
}

#footer-top ul.menu li {
  display: block;
}

#footer-top ul.menu li a {
  color: #FFFFFF;
  text-decoration: none;
}

#footer-bottom {
  padding: 10px 0;
  font-size: 14px;
}

#footer-bottom a {
  color: #FFFFFF;
  text-decoration: none;
}

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

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

/* Homepage Styles */

#home-slider {
  /*background: #000000 url('/wp-content/themes/blank-child/images/slider-bg.jpg') center center no-repeat;*/
  background: #000000;
}

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

#home-slider {
  position: relative;
}

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

.slide {
  position: relative;
  width: 100%;
  overflow: hidden;
}

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

.slide-image img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
  margin: auto;
  text-align: center;
  z-index: 3;
}

.slide-content-outer {
  display: table;
  width: 100%;
  height: 100%;
}

.slide-content-inner {
  position: relative;
  display: table-cell;
  width: 100%;
  height: 100%;
  text-align: left;
  vertical-align: middle;
}

.slide-content-main {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 55%;
  padding: 50px 50px 150px 50px;
  line-height: normal;
  text-align: left;
  background: rgba(255, 255, 255, 0.6);
  box-sizing: border-box;
}

.slide-content-main::after {
  content: "";
  position: absolute;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.6);
}

.slide-title {
}

.slide-title h1 {
  margin: 0.5rem 0 0 0;
}

.slide-text {
  padding: 25px 0;
  font-size: 20px;
}

.home-section {
  padding: 80px 0;
}

#home-tiles {
  position: relative;
  margin-top: -100px;
  z-index: 9;
}

.home-tile a {
  display: block;
  padding: 60px 40px;
  color: #FFFFFF;
  text-decoration: none;
}

.home-tile a:hover {
  transform: scale(1.1);
}

.home-tile a span {
  display: block;
}

.home-tile-icon {
  margin: 0 0 20px 0;
}

.home-tile-title {
  margin: 0 0 40px 0;
}

.home-tile-text {
  font-size: 16px;
}

#home-tiles-main {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, 1fr);
}

#home-history {
  position: relative;
  margin-top: -100px;
  z-index: 8;
  background: var(--theme-color-primary);
}

#home-history-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  padding-top: 100px;
  background: var(--theme-color-primary);
}

#home-history-main::after {
  content: "";
  position: absolute;
  left: -100%;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #FFFFFF;
}

.home-history-column {
}

.home-history-column img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

#home-history-text {
  padding: 0 0 0 100px;
  color: #FFFFFF;
}

#home-history-text a {
  color: #FFFFFF;
}

#home-news {
  color: #FFFFFF;
  background: #2A2D39;
}

#home-news-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.home-news-box {
}

.home-news-box p {
  margin: 0 0 1rem 0;
  color: #FFFFFF;
}

.home-news-box a {
  color: #FFFFFF;
  text-decoration: none;
}

.news-image {
  padding: 0 0 2rem 0;
}

.news-title {
  font-size: 20px;
}

.news-date {
  font-size: 16px;
}

.news-excerpt {
}

.news-button {
}

#home-events {
  background: #FFFFFF;
}

#home-events-main {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.home-events-column {
}

.home-events-column img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

#home-events-text {
  padding: 0 100px;
}

/* Interior Styles */

#content-main {
  position: relative;
  padding: 60px 0;
}

#content-main:not(.no-sidebar)::before {
  display: block;
  content: "";
  position: absolute;
  left: 74%;
  top: 60px;
  bottom: 60px;
  width: 1px;
  background: #EFEFEF;
}

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

body:not(.home) #content-main:not(.no-sidebar) #primary {
  float: left;
  width: 75%;
  padding-right: 5%;
}

.entry-header {
  display: table;
  position: relative;
  width: 100%;
  height: 350px;
  margin-top: var(--theme-header-height);
  background: #000000;
}

.entry-header-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-header-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.entry-header-image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.entry-header-text {
  display: table-cell;
  position: relative;
  width: 100%;
  vertical-align: middle;
  z-index: 2;
}

.entry-header-text h1 {
  margin: 0;
  padding: 0;
  color: #FFFFFF;
  text-align: left;
}

.hentry {
  margin: 0;
}

.entry-content {
  margin: 0;
}

.entry-content ul {
}

.entry-content ul li {
  margin: 0 0 7px 0;
}

body:not(.home) #content-main:not(.no-sidebar) #secondary {
  float: right;
  width: 20%;
  padding-top: 10px;
}

.widget-area {
}

.widget-area .widget {
}

.widget-area .widget:last-child {
  margin: 0;
}

.widget-area .widget h2.widget-title {
  margin: 0 0 15px 0;
  font-size: 20px;
}

.widget-area .widget h2.widget-title::after {
  border-bottom: 1px solid #EDEDED;
}

.widget-area .widget ul.menu,
.widget-area .widget ul.sub-menu {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.widget-area .widget ul.sub-menu {
  padding: 0 0 0 20px;
}

.widget-area .widget ul.menu li,
.widget-area .widget ul.sub-menu li {
  padding: 0;
}

.widget-area .widget ul.menu li a,
.widget-area .widget ul.sub-menu li a {
  display: block;
  padding: 8px 15px;
  text-decoration: none;
  border-bottom: 1px solid #EFEFEF;
}

.widget-area .widget ul.menu li a:hover,
.widget-area .widget ul.sub-menu li a:hover {
  color: #000000;
}

.widget-area .widget ul.menu li.current-menu-item a,
.widget-area .widget ul.sub-menu li.current-menu-item a {
}

.search-result {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #EDEDED;
}

.search-result-title {
  margin: 0;
  font-size: 24px;
}

.search-result-title a {
  text-decoration: none;
}

.search-result-excerpt {
  margin: 15px 0;
}

.search-result-permalink {
  margin: 0;
  font-size: 14px;
}

.search-result-permalink a {
  color: #595959;
}

/* Form Styles */

form.wpcf7-form {
}

form.wpcf7-form label {
  font-weight: 600;
}

form.wpcf7-form input,
form.wpcf7-form textarea,
form.wpcf7-form select {
  width: 100%;
  padding: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  line-height: normal;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

form.wpcf7-form input[type="checkbox"],
form.wpcf7-form input[type="radio"] {
  width: auto;
}

form.wpcf7-form input:focus,
form.wpcf7-form select:focus,
form.wpcf7-form textarea:focus {
  outline: none;
  border: 1px solid var(--theme-color-primary);
  box-shadow: 0 0 0 0.2rem var(--theme-color-primary);
}

form.wpcf7-form input[type="submit"] {
  width: auto;
  padding: 15px 60px;
  color: #FFFFFF !important;
  background: var(--theme-color-primary);
  border: 0;
  box-shadow: inset 0 0 0 1px var(--theme-color-primary);
  cursor: pointer;
  transition: all ease-in-out 0.12s;
}

form.wpcf7-form input[type="submit"]:hover {
  color: var(--theme-color-primary) !important;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px var(--theme-color-primary);
}

form.wpcf7-form fieldset {
  margin: 0;
  border: 1px solid #CCCCCC;
}

form.wpcf7-form fieldset legend {
  padding: 0 7px;
}

form.wpcf7-form fieldset p {
  margin: 5px 0;
}

form.wpcf7-form span.form-required {
}

form.wpcf7-form span.form-required::after {
  content: "*";
  color: #CC0000;
}

/* Button Styles */

.button {
  display: inline-block;
  padding: 10px 30px;
  font-weight: 600;
  line-height: normal;
  text-decoration: none;
}

.button-primary {
  color: #FFFFFF !important;
  background: var(--theme-color-primary);
  box-shadow: inset 0 0 0 1px var(--theme-color-primary);
}

.button-primary:hover {
  color: var(--theme-color-primary) !important;
  background: #FFFFFF;
  box-shadow: inset 0 0 0 1px #FFFFFF;
}

.button-primary-border:hover {
  box-shadow: inset 0 0 0 1px var(--theme-color-primary);
}

.button-secondary {
  color: #333333 !important;
  background: var(--theme-color-secondary);
  box-shadow: inset 0 0 0 1px var(--theme-color-secondary);
}

.button-secondary:hover {
  color: var(--theme-color-secondary) !important;
  background: #333333;
  box-shadow: inset 0 0 0 1px #333333;
}

.button-secondary-border:hover {
  box-shadow: inset 0 0 0 1px var(--theme-color-secondary);
}

.button-light {
  color: #333333 !important;
  background: var(--theme-color-light);
  box-shadow: inset 0 0 0 1px var(--theme-color-light);
}

.button-light:hover {
  color: var(--theme-color-light) !important;
  background: #333333;
  box-shadow: inset 0 0 0 1px #333333;
}

.button-light-border:hover {
  box-shadow: inset 0 0 0 1px var(--theme-color-light);
}

.button-block {
  display: block;
  text-align: center;
}

.button-large {
  padding: 15px 60px;
}

.button-wide {
  padding: 15px 60px;
}

.button-pill {
  border-radius: 100vmax;
}

.button-round {
  border-radius: 6px;
}

/* Misc Styles */

.no-border {
  border: 0 !important;
  box-shadow: none !important;
}

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

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

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

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

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

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

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

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

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

.float-left {
  float: left;
  margin: 0 35px 20px 0;
}

.float-right {
  float: right;
  margin: 0 0 20px 35px;
}

.clear-floats {
  color: inherit;
}

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

/* Responsive Styles */

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

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

@media only screen and (max-width: 1280px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  #content-main {
    padding: 30px;
  }
}

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

@media only screen and (max-width: 1080px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  #masthead .container {
    padding: 0;
  }

  #header-top {
    position: relative;
  }

  #header-right {
    padding: 0 30px;
    order: 2;
  }

  #navigation {
    text-align: right;
  }

  .main-navigation {
    display: block;
    float: none;
  }

  .menu-toggle {
    display: inline-block;
    margin: 0;
    padding: 15px;
    color: #333333;
    font-size: 32px;
    text-align: left;
    background: transparent;
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
  }

  .menu-toggle i.fa {
    float: right;
  }

  .main-navigation.toggled .menu-toggle i.fa::before {
    content: "\f00d" !important;
  }

  .menu-main-menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
  }

  .main-navigation ul {
    display: none;
    white-space: normal;
  }

  .main-navigation ul ul {
    background: #FFFFFF;
  }

  .main-navigation ul li {
    display: block;
  }

  .main-navigation ul li a,
  .main-navigation ul li a:hover {
    padding: 10px 25px;
    line-height: normal;
    background: #FFFFFF !important;
    border-bottom: 1px solid #EFEFEF !important;
  }

  .main-navigation ul:not(.sub-menu) > li > a > span::after {
    display: none;
  }

  .main-navigation ul li.current_page_parent > a::after,
  .main-navigation ul li.current_page_item > a::after {
    display: none;
  }

  .main-navigation ul ul,
  .main-navigation ul ul {
    float: none;
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    padding-left: 20px;
    box-shadow: none;
  }

  .main-navigation li {
    float: none;
    display: block;
  }

  .main-navigation a {
    padding: 15px;
    text-transform: none;
  }

  .main-navigation ul ul a {
    width: 100%;
  }

  #header-bottom {
    padding: 0 30px;
  }

  #header-bottom-left {
    padding: 0;
  }

  #home-slider-main,
  #home-slider-items,
  .slide,
  .slide-image {
    height: 600px;
  }

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

  .slide-content-main::after {
    display: none;
  }

  #home-tiles {
    margin: 30px 0;
  }

  #home-history {
    margin: 30px 0;
    background: #FFFFFF;
  }

  #home-history-main {
    padding-top: 0;
  }

  #home-history-main::after {
    display: none;
  }

  #home-history-text {
    padding: 0 30px;
  }

  #home-events-text {
    padding: 0 30px;
  }
}

@media only screen and (max-width: 810px) {
  #home-tiles-main {
    grid-template-columns: repeat(2, 1fr);
  }

  #home-history-main,
  #home-news-main,
  #home-events-main {
    grid-template-columns: 1fr;
  }

  .entry-header {
    height: 200px;
    margin-top: calc(var(--theme-header-height) + var(--theme-utility-height));
  }

  .entry-header-text h1 {
    text-align: center;
  }

  body:not(.home) #primary,
  body:not(.home) #secondary {
    float: none !important;
    width: auto !important;
    margin: 0 0 30px 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  #content-main::before {
    display: none !important;
  }

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

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

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

  .float-left,
  .float-right,
  .alignleft,
  .alignright,
  .alignnone {
    display: block;
    float: none;
    margin: 0 auto 15px auto;
    text-align: center;
  }
}

@media only screen and (max-width: 768px) {
  :root {
    --theme-header-height: 100px;
    --theme-utility-height: 40px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 20px;
  }

  #navigation {
    text-align: right;
  }

  #header-bottom-left {
    display: none;
  }

  #header-bottom-right {
    width: 100%;
  }

  #header-bottom-right > :last-child {
    float: right;
  }

  .slide-text {
    padding: 15px 0 0 0;
    font-size: 16px;
  }

  #home-tiles,
  #home-history {
    margin: 0;
  }

  #home-tiles .container,
  #home-history .container {
    padding: 0;
  }

  #home-tiles-main {
    grid-template-columns: 1fr;
  }

  .home-tile a {
    padding: 30px 20px;
  }

  .home-tile-title {
    margin: 0 0 15px 0;
  }
}

@media only screen and (max-width: 568px) {
  #navigation {
    text-align: center;
  }

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

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

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

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